On Tue Jan 13 02:40:17 2009, richardh wrote:
> The feed operators ==> and <== dont appear to work.
> Not on the rakudo feature status page
> 
> I tried the following code (I know it is better to use [+] for this 
> example, but I was looking for a simple code snippet).
> 
> my @arr = ( 1,2,3,4 );
> my $collect;
> @arr ==> { $collect += $_ };
> say $collect; # should be 10
> 
> Got a syntax error.

No, they're not implemented at all yet. They're kinda less interesting
without laziness. OTOH, I guess they maybe ain't so much lazy
themselves, as the things (like grep) that they pass data onto are, so
it may not be entirely pointless to get a first cut of them in soonish
(and it doesn't look too hard to get the basics in). Full support, in
all its multi-threaded lazy transactional glory, will probably be quite
a while though.

Thanks,

Jonathan

Reply via email to