@@ -528,7 +528,7 @@ Defined As:
528
528
529
529
method flatmap(Any:U: &code --> Seq)
530
530
531
- Coerces the C < Any > to a C < List > by applying the C < .list > method and uses
531
+ Coerces the C < Any > to a C < list > by applying the C < .list > method and uses
532
532
L « C < List.flatmap > |/type/List#method_flatmap» on it.
533
533
534
534
say Any.flatmap({.reverse}); # OUTPUT: «((Any))»
@@ -542,7 +542,7 @@ Defined As:
542
542
multi method roll(--> Any)
543
543
multi method roll($n --> Seq)
544
544
545
- Coerces the C < Any > to a C < List > by applying the C < .list > method and uses
545
+ Coerces the C < Any > to a C < list > by applying the C < .list > method and uses
546
546
L « C < List.roll > |/type/List#routine_roll» on it.
547
547
548
548
say Any.roll; # OUTPUT: «(Any)»
@@ -555,7 +555,7 @@ Defined As:
555
555
multi method pick(--> Any)
556
556
multi method pick($n --> Seq)
557
557
558
- Coerces the C < Any > to a C < List > by applying the C < .list > method and uses
558
+ Coerces the C < Any > to a C < list > by applying the C < .list > method and uses
559
559
L « C < List.pick > |/type/List#routine_pick» on it.
560
560
561
561
say Any.pick; # OUTPUT: «(Any)»
@@ -869,7 +869,7 @@ Defined As:
869
869
870
870
method iterator(--> Iterator)
871
871
872
- Coerces the C < Any > to a C < List > by applying the C < .list > method and uses
872
+ Coerces the C < Any > to a C < list > by applying the C < .list > method and uses
873
873
L « C < iterator > |/type/Iterable#method_iterator» on it.
874
874
875
875
my $it = Any.iterator;
@@ -882,7 +882,7 @@ Defined As:
882
882
883
883
method grep(Mu $matcher, :$k, :$kv, :$p, :$v --> Seq)
884
884
885
- Coerces the C < Any > to a C < List > by applying the C < .list > method and uses
885
+ Coerces the C < Any > to a C < list > by applying the C < .list > method and uses
886
886
L « C < List.grep > |/type/List#routine_grep» on it.
887
887
888
888
Based on C < $matcher > value can be either C < ((Any)) > or empty List.
0 commit comments