The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Perl6::Gather version 0.42
=========================

This module prototypes the Perl 6 gather/take mechanism.

For example:

	use Perl6::Gather;

	@odds = gather {
				for (@data) {
					take if /(one|three|five|nine)$/;
					take if /^\d+$/ && $_ %2;
				}
				take 99, 101 unless gathered;
			};


INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install


DEPENDENCIES

This module requires these other modules and libraries:

  Perl6::Export


COPYRIGHT AND LICENCE

Copyright (C) 2003 Damian Conway

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.