Lightning flashed, thunder crashed and Larry Wall <[EMAIL PROTECTED]> whispered: | I'm thinking concat will be ~. Furthermore, I'm thinking unary ~ will | be stringify, and unary ^ will be bit complement, on the theory that | bit complement is like xoring with 0xffffffff. And unary + will be a | numify, not a no-op. How difficult would it be to co-opt , for concat? Currently it doesn't do much of value in a strictly scalar context. It is also already fairly synonymous in a string context: print "a", $x, "$b"; Hmmm... this could be a real problem in list context though. I suppose it is conceivable that someone might want to do something like: @a = ( $a . $b , $c ); Maybe not a good idea. But maybe something to think about. -spp
- Re: Strings vs Numbers (Re: Tying & Overloading) Branden
- Re: Strings vs Numbers (Re: Tying & Overloading) John Porter
- Re: Strings vs Numbers (Re: Tying & Overloading) Nathan Wiger
- Re: Strings vs Numbers (Re: Tying & Overloading) John Porter
- Re: Strings vs Numbers (Re: Tying & Overloading) David L. Nicol
- Re: Strings vs Numbers (Re: Tying & Overloading) Simon Cozens
- Re: Strings vs Numbers (Re: Tying & Overloading) Graham Barr
- Re: Tying & Overloading Damien Neil
- Re: Tying & Overloading Simon Cozens
- Re: Tying & Overloading Bart Lateur
- Re: Tying & Overloading Stephen P. Potter
- Re: Tying & Overloading Dan Sugalski
- Re: Tying & Overloading David L. Nicol
- Re: Tying & Overloading James Mastros
- Re: Tying & Overloading Jonathan Scott Duff
- Re: Tying & Overloading Andy Dougherty
- Re: Tying & Overloading Bart Lateur
- Re: Tying & Overloading Simon Cozens
- Re: Tying & Overloading Larry Wall
- Re: Tying & Overloading H . Merijn Brand
- Re: Tying & Overloading Jarkko Hietaniemi