Skip to content

Commit 6054cab

Browse files
doc: improve docs for minArray/maxArray
1 parent 1b5a43b commit 6054cab

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

doc/_stdlib_gen/stdlib-content.jsonnet

+10-2
Original file line numberDiff line numberDiff line change
@@ -1473,7 +1473,11 @@ local exampleDocMultiline(mid, ex) =
14731473
availableSince: '0.21.0',
14741474
description: html.paragraphs([
14751475
|||
1476-
Return the min of all element in <code>arr</code>.
1476+
Return the minimum of all elements in <code>arr</code>. If <code>keyF</code> is provided, it is called on each element
1477+
of the array and should return a comparator value, and in this case <code>minArray</code> will return an element
1478+
with the minimum comparator value. If <code>onEmpty</code> is provided, and <code>arr</code> is empty, then
1479+
<code>minArray</code> will return the provided <code>onEmpty</code> value. If <code>onEmpty</code> is not provided,
1480+
then an empty <code>arr</code> will raise an error.
14771481
|||,
14781482
]),
14791483
},
@@ -1483,7 +1487,11 @@ local exampleDocMultiline(mid, ex) =
14831487
availableSince: '0.21.0',
14841488
description: html.paragraphs([
14851489
|||
1486-
Return the max of all element in <code>arr</code>.
1490+
Return the maximum of all elements in <code>arr</code>. If <code>keyF</code> is provided, it is called on each element
1491+
of the array and should return a comparator value, and in this case <code>maxArray</code> will return an element
1492+
with the maximum comparator value. If <code>onEmpty</code> is provided, and <code>arr</code> is empty, then
1493+
<code>maxArray</code> will return the provided <code>onEmpty</code> value. If <code>onEmpty</code> is not provided,
1494+
then an empty <code>arr</code> will raise an error.
14871495
|||,
14881496
]),
14891497
},

doc/ref/stdlib.html

+10-2
Original file line numberDiff line numberDiff line change
@@ -2735,7 +2735,11 @@ <h4 id="std-minArray">
27352735
</em>
27362736
</p>
27372737
<p>
2738-
Return the min of all element in <code>arr</code>.
2738+
Return the minimum of all elements in <code>arr</code>. If <code>keyF</code> is provided, it is called on each element
2739+
of the array and should return a comparator value, and in this case <code>minArray</code> will return an element
2740+
with the minimum comparator value. If <code>onEmpty</code> is provided, and <code>arr</code> is empty, then
2741+
<code>minArray</code> will return the provided <code>onEmpty</code> value. If <code>onEmpty</code> is not provided,
2742+
then an empty <code>arr</code> will raise an error.
27392743
</p>
27402744

27412745
</div>
@@ -2762,7 +2766,11 @@ <h4 id="std-maxArray">
27622766
</em>
27632767
</p>
27642768
<p>
2765-
Return the max of all element in <code>arr</code>.
2769+
Return the maximum of all elements in <code>arr</code>. If <code>keyF</code> is provided, it is called on each element
2770+
of the array and should return a comparator value, and in this case <code>maxArray</code> will return an element
2771+
with the maximum comparator value. If <code>onEmpty</code> is provided, and <code>arr</code> is empty, then
2772+
<code>maxArray</code> will return the provided <code>onEmpty</code> value. If <code>onEmpty</code> is not provided,
2773+
then an empty <code>arr</code> will raise an error.
27662774
</p>
27672775

27682776
</div>

0 commit comments

Comments
 (0)