@@ -769,10 +769,9 @@ Compute both the minimum and maximum element in a single pass, and return them a
769
769
770
770
The value returned for empty `itr` can be specified by `init`. It must be a 2-tuple whose
771
771
first and second elements are neutral elements for `min` and `max` respectively
772
- (i.e. which are greater/less than or equal to any other element).
773
- is used for non-empty collections. Note: it implies that, for empty `itr`, the first
774
- element is typically _greater_ than the last element. This is a "paradoxical" but yet
775
- expected result.
772
+ (i.e. which are greater/less than or equal to any other element). It is used for non-empty
773
+ collections. Note: it implies that, for empty `itr`, the first element is typically
774
+ _greater_ than the last element. This is a "paradoxical" but yet expected result.
776
775
777
776
!!! compat "Julia 1.6"
778
777
Keyword argument `init` requires Julia 1.6 or later.
@@ -799,10 +798,9 @@ them as a 2-tuple. Only one pass is made over `itr`.
799
798
800
799
The value returned for empty `itr` can be specified by `init`. It must be a 2-tuple whose
801
800
first and second elements are neutral elements for `min` and `max` respectively
802
- (i.e. which are greater/less than or equal to any other element).
803
- is used for non-empty collections. Note: it implies that, for empty `itr`, the first
804
- element is typically _greater_ than the last element. This is a "paradoxical" but yet
805
- expected result.
801
+ (i.e. which are greater/less than or equal to any other element). It is used for non-empty
802
+ collections. Note: it implies that, for empty `itr`, the first element is typically
803
+ _greater_ than the last element. This is a "paradoxical" but yet expected result.
806
804
807
805
!!! compat "Julia 1.2"
808
806
This method requires Julia 1.2 or later.
0 commit comments