BigInt
clamp
Restricts a BigInt to a given range.inRange
Checks whether a BigInt falls within a range.max
Returns the largest BigInt in an array.maxBy
Returns the element of an array whose derived BigInt value is the largest.median
Returns the middle value of an array of BigInts.medianBy
Returns the middle of the BigInts that a function derives from each element of an array.min
Returns the smallest BigInt in an array.minBy
Returns the element of an array whose derived BigInt value is the smallest.percentile
Returns the BigInt at a given percentile of an array.range
Returns an array of BigInts counting from a start value up to, but not including, an end value.rangeRight
Returns the same BigInts as range, but in descending order.sum
Returns the sum of all elements in an array of BigInts.sumBy
Returns the sum of the BigInts that a function derives from each element of an array.