Author: wayland
Date: 2009-02-26 12:04:54 +0100 (Thu, 26 Feb 2009)
New Revision: 25581

Modified:
   docs/Perl6/Spec/S29-functions.pod
   docs/Perl6/Spec/S32-setting-library/Containers.pod
Log:
Moved Junctions from S29 to Containers.pod


Modified: docs/Perl6/Spec/S29-functions.pod
===================================================================
--- docs/Perl6/Spec/S29-functions.pod   2009-02-26 10:57:19 UTC (rev 25580)
+++ docs/Perl6/Spec/S29-functions.pod   2009-02-26 11:04:54 UTC (rev 25581)
@@ -921,28 +921,6 @@
 
 last, my, next, no, our, package, return, sub, use
 
-=head1 Junction
-
-All method calls on Junctions autohread if there's no such method in the
-Junction class.
-
-=over 4
-
-=item eigenstates
-
-    our List multi method eigenstates (Junction $j)
-
-Returns an unordered list of the values that constitute the junction (formerly
-called C<.values>). It flattens nested junctions of the same type, so
-C<(1|(2|3)).eigenstate> returns an arbitrary permutation of the list
-C<1, 2, 3>.
-
-This method has a rather unusual name by intention; a more common name might
-cause confusion as it could clash with a method name over which autothreading
-is expected.
-
-=back
-
 =head1 Default Export Questions
 
 Not sure whether these are exported by default or not.  Also, many may no 
longer exist; if 
@@ -1005,7 +983,7 @@
 
 =item Other
 
-bless  -- is this dead?
+bless
 caller
 chr
 die

Modified: docs/Perl6/Spec/S32-setting-library/Containers.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-02-26 10:57:19 UTC 
(rev 25580)
+++ docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-02-26 11:04:54 UTC 
(rev 25581)
@@ -26,6 +26,10 @@
 
 =head1 Function Roles
 
+This documents List, Seq, Range, Set, Bag, Junction.  
+
+XXX So where are Seq, Range, Set, Bag?
+
 =head2 Container
 
 =over
@@ -634,11 +638,31 @@
 
 =back
 
+=head2 Junction
 
+All method calls on Junctions autohread if there's no such method in the
+Junction class.
+
+=over 4
+
+=item eigenstates
+
+    our List multi method eigenstates (Junction $j)
+
+Returns an unordered list of the values that constitute the junction (formerly
+called C<.values>). It flattens nested junctions of the same type, so
+C<(1|(2|3)).eigenstate> returns an arbitrary permutation of the list
+C<1, 2, 3>.
+
+This method has a rather unusual name by intention; a more common name might
+cause confusion as it could clash with a method name over which autothreading
+is expected.
+
+=back
+
+
+
 =head1 Additions
 
 Please post errors and feedback to perl6-language.  If you are making
 a general laundry list, please separate messages by topic.
-
-
-

Reply via email to