Available on all platforms
A collection of high-level static utility functions for BigInt.
BigInt
staticinlinecastFrom(value:Dynamic):BigInt
Casts a dynamic value to a BigInt.
Parameters:
value
The value to cast.
Returns:
The value as a BigInt.
staticinlineisBigInt(value:Dynamic):Bool
Checks if a dynamic value is a BigInt.
The value to check.
true if the value is of type BigInt.
true
staticinlineisNull(value:BigInt):Bool
Checks if a BigInt value is null.
The BigInt to check.
true if the value is null.
staticparseValueUnsigned(value:Dynamic):BigInt
Parses a dynamic value into an unsigned BigInt. Supports String, Int, and other BigInt types.
String
Int
The value to parse.
A new BigInt instance.