in reply to Re^3: A tale about accessors, lvalues and ties
in thread A tale about accessors, lvalues and ties

Perl 6 ! ; )
my sub thingie is rw { return my $var is Proxy( for => $hidden_var, FETCH => { ... }, STORE => { ... }, TEMP => { ... }, ... ); }
see Apocalypse 6

But I'm not sure if it is really faster than what we already have in modules like Contextual::Return.

Depends on how fast ties are realised in p6...

Cheers LanX