@@ -1473,7 +1473,11 @@ local exampleDocMultiline(mid, ex) =
1473
1473
availableSince: '0.21.0' ,
1474
1474
description: html.paragraphs([
1475
1475
|||
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.
1477
1481
||| ,
1478
1482
]),
1479
1483
},
@@ -1483,7 +1487,11 @@ local exampleDocMultiline(mid, ex) =
1483
1487
availableSince: '0.21.0' ,
1484
1488
description: html.paragraphs([
1485
1489
|||
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.
1487
1495
||| ,
1488
1496
]),
1489
1497
},
0 commit comments