# Class: com.pnfsoftware.jeb.util.format.BigIntegers

A collection of [BigInteger](BigInteger) utility routines.

## Constructor: BigIntegers


## Static Method: max
- parameter: `coll`, type: `java.util.Collection<java.math.BigInteger>`
- return type: `java.math.BigInteger`

Description: Retrieve the greatest value in a collection of big integers.
parameter: coll: collection to scan
return: the greatest value, or null if the collection is empty

## Static Method: min
- parameter: `coll`, type: `java.util.Collection<java.math.BigInteger>`
- return type: `java.math.BigInteger`

Description: Retrieve the smallest value in a collection of big integers.
parameter: coll: collection to scan
return: the smallest value, or null if the collection is empty

