A collection of high-level static utility functions for BigInt.

Static methods

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.

Parameters:

value

The value to check.

Returns:

true if the value is of type BigInt.

staticinlineisNull(value:BigInt):Bool

Checks if a BigInt value is null.

Parameters:

value

The BigInt to check.

Returns:

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.

Parameters:

value

The value to parse.

Returns:

A new BigInt instance.