Re: Hyperoperators and the Each role

2006-07-17 Thread Darren Duncan
At 6:06 PM -0400 7/17/06, Christopher Jeris wrote: I have a couple of questions about what S03 says about hyperoperators applying recursively to any object which matches the 'Each' role: [from S03] Seq(3,8,[2,Seq(9,3)],8) >>-<< (1,1,2,1); # Seq(2,7,[0,Seq(7,1)],7) 1. What determines the concret

Hyperoperators and the Each role

2006-07-17 Thread Christopher Jeris
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [Beware, here be newbie -- possible nonsense ahead.] I have a couple of questions about what S03 says about hyperoperators applying recursively to any object which matches the 'Each' role: [from S03] Seq(3,8,[2,Seq(9,3)],8) >>-<< (1,1,2,1); # Seq(2,7

Re: binding operators and related introspection

2006-07-17 Thread Sam Vilain
Darren Duncan wrote: > But I would also like to have an easy way to change all bindings to > the same variable at once to point to the same new variable. > [...] >my $x = 'foo'; >my $y = 'bar'; >my $z := $x;# $x and $z point to same 'foo', $y to a 'bar' >$z.rebind_all_aliases_