@@ -653,7 +653,7 @@ class or role, even after it has been redefined in the child class.
653
653
= head2 prefix C « ++ »
654
654
655
655
= begin code :skip-test
656
- multi sub prefix:<++>($x is rw) is assoc<none >
656
+ multi sub prefix:<++>($x is rw) is assoc<non >
657
657
= end code
658
658
659
659
Increments its argument by one, and returns the incremented value.X < |increment operator >
@@ -669,7 +669,7 @@ semantics.
669
669
= head2 prefix C « -- »
670
670
671
671
= begin code :skip-test
672
- multi sub prefix:<-->($x is rw) is assoc<none >
672
+ multi sub prefix:<-->($x is rw) is assoc<non >
673
673
= end code
674
674
675
675
Decrements its argument by one, and returns the decremented value.X < |decrement operator >
@@ -686,7 +686,7 @@ semantics.
686
686
= head2 postfix C « ++ »
687
687
688
688
= begin code :skip-test
689
- multi sub postfix:<++>($x is rw) is assoc<none >
689
+ multi sub postfix:<++>($x is rw) is assoc<non >
690
690
= end code
691
691
692
692
Increments its argument by one, and returns the unincremented value.X < |increment operator >
@@ -709,7 +709,7 @@ undefined values, it returns 0:
709
709
= head2 postfix C « -- »
710
710
711
711
= begin code :skip-test
712
- multi sub postfix:<-->($x is rw) is assoc<none >
712
+ multi sub postfix:<-->($x is rw) is assoc<non >
713
713
= end code
714
714
715
715
Decrements its argument by one, and returns the undecremented value.X < |decrement operator >
@@ -1148,7 +1148,7 @@ unsuccessfully, resetting the answer to 42.
1148
1148
= head2 infix C « does »
1149
1149
1150
1150
= begin code :skip-test
1151
- sub infix:<does>(Mu $obj, Mu $role) is assoc<none >
1151
+ sub infix:<does>(Mu $obj, Mu $role) is assoc<non >
1152
1152
= end code
1153
1153
1154
1154
Mixes C < $role > into C < $obj > at run time. Requires C < $obj > to be mutable.
@@ -1159,7 +1159,7 @@ to act like a role, for example enum values.
1159
1159
= head2 infix C « but »
1160
1160
1161
1161
= begin code :skip-test
1162
- sub infix:<but>(Mu $obj, Mu $role) is assoc<none >
1162
+ sub infix:<but>(Mu $obj, Mu $role) is assoc<non >
1163
1163
= end code
1164
1164
1165
1165
Creates a copy of C < $obj > with C < $role > mixed in. Since C < $obj > is not
@@ -1171,7 +1171,7 @@ to act like a role, for example enum values.
1171
1171
= head2 infix C « cmp »
1172
1172
1173
1173
= begin code :skip-test
1174
- proto sub infix:<cmp>(Any, Any) returns Order:D is assoc<none >
1174
+ proto sub infix:<cmp>(Any, Any) returns Order:D is assoc<non >
1175
1175
multi sub infix:<cmp>(Any, Any)
1176
1176
multi sub infix:<cmp>(Real:D, Real:D)
1177
1177
multi sub infix:<cmp>(Str:D, Str:D)
@@ -1192,7 +1192,7 @@ if C<$a eqv $b>, then C<$a cmp $b> always returns C<Order::Same>.
1192
1192
= head2 infix C « leg »
1193
1193
1194
1194
= begin code :skip-test
1195
- proto sub infix:<leg>($a, $b) returns Order:D is assoc<none >
1195
+ proto sub infix:<leg>($a, $b) returns Order:D is assoc<non >
1196
1196
multi sub infix:<leg>(Any, Any)
1197
1197
multi sub infix:<leg>(Str:D, Str:D)
1198
1198
= end code
@@ -1210,7 +1210,7 @@ say 'b' leg 'a'; More
1210
1210
= head2 infix C « <=> »
1211
1211
1212
1212
= begin code :skip-test
1213
- multi sub infix:«<=>»($a, $b) returns Order:D is assoc<none >
1213
+ multi sub infix:«<=>»($a, $b) returns Order:D is assoc<non >
1214
1214
= end code
1215
1215
1216
1216
X < Numeric three-way comparator > .X < |spaceship operator >
@@ -1220,7 +1220,7 @@ Coerces both arguments to L<Real>, and then does a numeric comparison.
1220
1220
= head2 infix C « .. »
1221
1221
1222
1222
= begin code :skip-test
1223
- multi sub infix:<..>($a, $b) returns Range:D is assoc<none >
1223
+ multi sub infix:<..>($a, $b) returns Range:D is assoc<non >
1224
1224
= end code
1225
1225
1226
1226
X < Range operator >
@@ -1230,7 +1230,7 @@ Constructs a L<Range> from the arguments.
1230
1230
= head2 infix C « ..^ »
1231
1231
1232
1232
= begin code :skip-test
1233
- multi sub infix:<..^>($a, $b) returns Range:D is assoc<none >
1233
+ multi sub infix:<..^>($a, $b) returns Range:D is assoc<non >
1234
1234
= end code
1235
1235
1236
1236
X < Right-open range operator > .
@@ -1240,7 +1240,7 @@ Constructs a L<Range> from the arguments, excluding the end point.
1240
1240
= head2 infix C « ^.. »
1241
1241
1242
1242
= begin code :skip-test
1243
- multi sub infix:<^..>($a, $b) returns Range:D is assoc<none >
1243
+ multi sub infix:<^..>($a, $b) returns Range:D is assoc<non >
1244
1244
= end code
1245
1245
1246
1246
X < Left-open range operator > .
@@ -1250,7 +1250,7 @@ Constructs a L<Range> from the arguments, excluding the start point.
1250
1250
= head2 infix C « ^..^ »
1251
1251
1252
1252
= begin code :skip-test
1253
- multi sub infix:<^..^>($a, $b) returns Range:D is assoc<none >
1253
+ multi sub infix:<^..^>($a, $b) returns Range:D is assoc<non >
1254
1254
= end code
1255
1255
1256
1256
X < Open range operator >
0 commit comments