Author: masak
Date: 2009-05-06 17:20:36 +0200 (Wed, 06 May 2009)
New Revision: 26705

Modified:
   docs/Perl6/Spec/S32-setting-library/Containers.pod
   docs/Perl6/Spec/S32-setting-library/IO.pod
Log:
[S32/Containers] added .comb
[S32/IO] added .comb

Modified: docs/Perl6/Spec/S32-setting-library/Containers.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-05-06 15:20:32 UTC 
(rev 26704)
+++ docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-05-06 15:20:36 UTC 
(rev 26705)
@@ -396,6 +396,13 @@
 Returns a junction which will only match against another value if none of
 the values in the list matches.
 
+=item
+
+ multi method comb ( Regex $matcher, Int $limit = * )
+
+Treats the list as a string (by simply C<join>ing them together), and calls
+C<.comb> on that string with the same parameters. See C<Str::comb>.
+
 =back
 
 =head2 Array

Modified: docs/Perl6/Spec/S32-setting-library/IO.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/IO.pod  2009-05-06 15:20:32 UTC (rev 
26704)
+++ docs/Perl6/Spec/S32-setting-library/IO.pod  2009-05-06 15:20:36 UTC (rev 
26705)
@@ -356,6 +356,11 @@
 Though most event-based programs will just want to feed keystrokes into the
 event queue.]
 
+=item multi method comb ( Regex $matcher, Int $limit = * )
+
+Reads everything into a string, and calls C<.comb> on it with the same
+parameters. See C<Str::comb>.
+
 =back
 
 =head2 IO::Writeable::Encoded

Reply via email to