File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ Examples:
129
129
Defined as:
130
130
131
131
multi method sort()
132
- multi method sort(&by)
132
+ multi method sort( &by )
133
133
134
134
Sorts iterables with C < infix:<cmp> > or given code object and returns a new C < List > .
135
135
@@ -406,7 +406,7 @@ Coerce the invocant first to a C<List> and then to a L<Supply|/type/Supply>.
406
406
Defined As:
407
407
408
408
multi method min(--> Any:D)
409
- multi method min(&by --> Any:D)
409
+ multi method min( &by --> Any:D)
410
410
411
411
Coerces to Iterable and returns the numerically smallest element. If a
412
412
C < Callable > is provided it is called with each element and its smallest return
@@ -417,7 +417,7 @@ values is returned.
417
417
Defined As:
418
418
419
419
multi method max(--> Any:D)
420
- multi method max(&by --> Any:D)
420
+ multi method max( &by --> Any:D)
421
421
422
422
Coerces to Iterable and returns the numerically biggest element. If a
423
423
C < Callable > is provided it is called with each element and its biggest return
@@ -428,7 +428,7 @@ values is returned.
428
428
Defined As:
429
429
430
430
multi method minmax(--> List:D)
431
- multi method minmax(&by --> List:D)
431
+ multi method minmax( &by --> List:D)
432
432
433
433
Returns a list containing the smallest and the biggest element. If a
434
434
C < Callable > is provided each element is filtered and then numerically compared.
You can’t perform that action at this time.
0 commit comments