We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 517c494 commit 028cc3eCopy full SHA for 028cc3e
doc/Type/List.pod6
@@ -1159,12 +1159,12 @@ C<with> parameter with a meta-operator :
1159
1160
Defined as:
1161
1162
- method roundrobin(List:D: --> Seq)
+ sub roundrobin(+list-of-lists --> Seq)
1163
1164
Builds a 'list of lists', returned as a sequence, from multiple input lists or
1165
other L<iterables|/type/Iterable>. C<roundrobin> returns an identical result to
1166
-that of L<zip|/type/List#routine_zip>, except when the input lists have an
1167
-unequal number of elements.
+that of L<zip|/type/List#routine_zip>, except when the input lists are allowed
+to have an unequal number of elements.
1168
1169
say roundrobin <a b c>, <d e f>, <g h i>;
1170
# OUTPUT: «((a d g) (b e h) (c f i))»
0 commit comments