On Fri, Sep 09, 2005 at 08:46:06AM -0700, Larry Wall wrote: : If these are really postfix operators, then we can also write : : Foo .::{} : Foo .::<> : Foo .::()
But I don't think they can really be postfix. At least, ::() isn't, since $Foo .::($bar) would not be the same as we defined $Foo::($bar) to be. That is, ::() is really an interpolating syntax in the current design. Maybe that needs to be broken. I dunno. My hemoglobin to caffeine ratio is still too high. Larry