[][src]Module boa::builtins::bigint

This module implements the global BigInt object.

BigInt is a built-in object that provides a way to represent whole numbers larger than the largest number JavaScript can reliably represent with the Number primitive and represented by the Number.MAX_SAFE_INTEGER constant. BigInt can be used for arbitrarily large integers.

More information:

Re-exports

pub use conversions::*;
pub use equality::*;
pub use operations::*;

Modules

conversions
equality
operations

This module implements the BigInt operations.

Structs

BigInt

BigInt implementation.