get Big Integer
fun getBigInteger(index: Int, orElse: () -> BigInteger = {
throw NullPointerException(
"Value at index, $index, was `null` when trying to read a " +
"BigInteger.")
}): BigInteger
Content copied to clipboard
Get a BigInteger at the requested subscript.
Return
The BigInteger at the requested subscript, or the result of applying orElse if the element was null.
Parameters
index
The array subscript.
or Else
An optional function to run if the element was null. If not present, a NullPointerException is thrown if the element was null.