File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -646,6 +646,9 @@ Returns the largest result of calling function `f` on each element of `itr`.
646
646
If provided, `init` must be a neutral element for `max` that will be returned
647
647
for empty collections.
648
648
649
+ !!! compat "Julia 1.6"
650
+ Keyword argument `init` requires Julia 1.6 or later.
651
+
649
652
# Examples
650
653
```jldoctest
651
654
julia> maximum(length, ["Julion", "Julia", "Jule"])
@@ -664,6 +667,9 @@ Returns the smallest result of calling function `f` on each element of `itr`.
664
667
If provided, `init` must be a neutral element for `min` that will be returned
665
668
for empty collections.
666
669
670
+ !!! compat "Julia 1.6"
671
+ Keyword argument `init` requires Julia 1.6 or later.
672
+
667
673
# Examples
668
674
```jldoctest
669
675
julia> minimum(length, ["Julion", "Julia", "Jule"])
You can’t perform that action at this time.
0 commit comments