Skip to content

Commit

Permalink
Adapts definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ committed May 10, 2019
1 parent 91b9f52 commit 5a05e66
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions doc/Type/Any.pod6
Expand Up @@ -520,15 +520,15 @@ Defined as:
method Supply(--> Supply:D) is nodal
Coerces the invocant first to a C<list> by applying its
L«C<.list>|/routine/list» method, and then to L<Supply|/type/Supply>.
First, it coerces the invocant to a C<list> by applying its
L«C<.list>|/routine/list» method, and then to a L<Supply|/type/Supply>.
=head2 method min
Defined as:
multi method min(--> Any:D)
multi method min(&filter --> Any:D)
multi method min()
multi method min(&by)
multi sub min(+args, :&by!)
multi sub min(+args)
Expand All @@ -548,8 +548,8 @@ value. The original value is still the one returned from C<min>.
Defined as:
multi method max(--> Any:D)
multi method max(&filter --> Any:D)
multi method max()
multi method max(&by)
multi sub max(+args, :&by!)
multi sub max(+args)
Expand All @@ -569,8 +569,8 @@ value. The original value is still the one returned from C<max>.
Defined as:
multi method minmax(--> Range:D)
multi method minmax(&filter --> Range:D)
multi method minmax()
multi method minmax(&by)
multi sub minmax(+args, :&by!)
multi sub minmax(+args)
Expand All @@ -589,7 +589,7 @@ value. The original values are still used in the returned C<Range>.
Defined as:
multi method minpairs(Any:D: --> Seq:D)
multi method minpairs(Any:D:)
Calls L«C<.pairs>|/routine/pairs» and returns a L<Seq|/type/Seq> with
all of the Pairs with minimum values, as judged by the
Expand All @@ -602,7 +602,7 @@ L«C<cmp> operator|/routine/cmp»:
Defined as:
multi method maxpairs(Any:D: --> Seq:D)
multi method maxpairs(Any:D:)
Calls L«C<.pairs>|/routine/pairs» and returns a L<Seq|/type/Seq> with all of the
Pairs with maximum values, as judged by the L«C<cmp>
Expand Down

0 comments on commit 5a05e66

Please sign in to comment.