Skip to content

BigInt

Works with JavaScript bigint values.

This module exposes the native BigInt constructor together with helpers for checking, arithmetic, comparison, range checks, safe parsing and conversions that return Option, integer square roots, aggregation, ordering, equivalence, reducers, and combiners.

35 exports Added in v2.0.0 Source

Constructors

BigInt

Added in v4.0.0 Source

Exposes the global bigint constructor for JavaScript bigint coercion.

When to use

Use to access native JavaScript bigint constructor coercion from the Effect module namespace.

Gotchas

This follows native BigInt coercion rules. It throws for invalid strings or non-integral numbers, and whitespace-only strings coerce to 0n.

See

  • fromString for parsing strings into an Option
  • fromNumber for converting safe integers into an Option Example (Constructing bigints) ``ts import.meta.vitest import { BigInt } from "effect" BigInt.BigInt(123) // => 123n BigInt.BigInt("456") // => 456n ``

Signature

declare const BigInt: BigIntConstructor;

Converting

fromNumber

Added in v2.4.12 Source

Converts a number to a bigint.

When to use

Use to convert a JavaScript number to bigint only when it is a safe integer.

Details

If the number is outside the safe integer range for JavaScript (Number.MAX_SAFE_INTEGER and Number.MIN_SAFE_INTEGER) or if the number is not a valid bigint, it returns Option.none().

See

  • toNumber for converting bigint values back to safe integer numbers
  • BigInt for native constructor coercion

Signature

declare function fromNumber(n: number): Option<bigint>;

fromString

Added in v2.4.12 Source

Parses a string into a bigint safely.

When to use

Use to parse a string as a bigint without throwing on invalid input.

Details

If the string is empty or contains characters that cannot be converted into a bigint, it returns Option.none().

See

  • BigInt for native constructor coercion that throws on invalid input

Signature

declare function fromString(s: string): Option<bigint>;

toNumber

Added in v2.0.0 Source

Converts a bigint to a number safely.

When to use

Use to convert a bigint to a JavaScript number only when it is a safe integer.

Details

If the bigint is outside the safe integer range for JavaScript (Number.MAX_SAFE_INTEGER and Number.MIN_SAFE_INTEGER), it returns Option.none().

See

  • fromNumber for converting a safe integer number to bigint

Signature

declare function toNumber(b: bigint): Option<number>;

Guards

isBigInt

Added in v2.0.0 Source

Checks whether a value is a bigint.

When to use

Use to validate unknown input and narrow it to bigint.

Signature

declare const isBigInt: (u: unknown) => u is bigint;

Instances

Equivalence

Added in v2.0.0 Source

Equivalence instance for bigints using strict equality (===).

When to use

Use when checking bigint equality through APIs that accept an equivalence relation.

Signature

declare const Equivalence: Equ.Equivalence<bigint>;

Order

Added in v2.0.0 Source

Provides an Order instance for bigint that allows comparing and sorting BigInt values.

When to use

Use when you need to sort or compare bigint values through APIs that accept an ordering instance.

Signature

declare const Order: order.Order<bigint>;

Math

abs

Added in v2.0.0 Source

Determines the absolute value of a given bigint.

When to use

Use to remove the sign from a bigint while preserving its magnitude.

Signature

declare function abs(n: bigint): bigint;

clamp

Added in v2.0.0 Source

Restricts the given bigint to be within the range specified by the minimum and maximum values.

When to use

Use to force a bigint into an inclusive range.

Details

If the bigint is less than the minimum, the function returns the minimum. If the bigint is greater than the maximum, the function returns the maximum. Otherwise, it returns the original bigint.

See

  • between for checking whether a bigint is already inside a range

Signature

declare const clamp: {
  (options: { maximum: bigint; minimum: bigint }): (self: bigint) => bigint;
  (
    self: bigint,
    options: {
      maximum: bigint;
      minimum: bigint;
    },
  ): bigint;
};

CombinerMax

Added in v4.0.0 Source

Combiner that returns the maximum bigint.

When to use

Use to keep the largest bigint when an API consumes a Combiner.

See

  • CombinerMin for keeping the smallest bigint
  • max for comparing two bigint values directly

Signature

declare const CombinerMax: Combiner.Combiner<bigint>;

CombinerMin

Added in v4.0.0 Source

Combiner that returns the minimum bigint.

When to use

Use to keep the smallest bigint through APIs that consume a Combiner.

See

  • CombinerMax for keeping the largest bigint
  • min for comparing two bigint values directly

Signature

declare const CombinerMin: Combiner.Combiner<bigint>;

decrement

Added in v2.0.0 Source

Returns the result of subtracting 1n from a bigint.

When to use

Use to decrement a bigint counter by one.

Signature

declare function decrement(n: bigint): bigint;

divide

Added in v2.0.0 Source

Divides one bigint by another safely.

When to use

Use to divide bigint values while representing division by zero as Option.none.

Details

Uses JavaScript bigint division, so non-exact quotients are truncated toward zero. Returns Option.none() when the divisor is 0n.

See

  • divideUnsafe for division that throws when the divisor is 0n
  • remainder for the JavaScript remainder operation

Signature

declare const divide: {
  (that: bigint): (self: bigint) => Option<bigint>;
  (self: bigint, that: bigint): Option<bigint>;
};

divideUnsafe

Added in v4.0.0 Source

Divides one bigint by another, throwing if the divisor is zero.

When to use

Use to divide bigint values where the divisor is known to be non-zero and division by zero should be a thrown exception.

Details

Uses JavaScript bigint division, so non-exact quotients are truncated toward zero.

Gotchas

Throws a RangeError when the divisor is 0n.

See

  • divide for division that returns Option.none when the divisor is 0n

Signature

declare const divideUnsafe: {
  (that: bigint): (self: bigint) => bigint;
  (self: bigint, that: bigint): bigint;
};

gcd

Added in v2.0.0 Source

Determines the greatest common divisor of two bigints.

When to use

Use to compute the greatest common divisor of two integer values.

See

  • lcm for computing the least common multiple

Signature

declare const gcd: {
  (that: bigint): (self: bigint) => bigint;
  (self: bigint, that: bigint): bigint;
};

increment

Added in v2.0.0 Source

Returns the result of adding 1n to a bigint.

When to use

Use to increment a bigint counter by one.

Signature

declare function increment(n: bigint): bigint;

lcm

Added in v2.0.0 Source

Determines the least common multiple of two bigints.

When to use

Use to compute the least common multiple of two integer values.

See

  • gcd for computing the greatest common divisor

Signature

declare const lcm: {
  (that: bigint): (self: bigint) => bigint;
  (self: bigint, that: bigint): bigint;
};

max

Added in v2.0.0 Source

Returns the maximum between two bigints.

When to use

Use to select the larger of two bigint values.

See

  • min for selecting the smaller value

Signature

declare const max: {
  (that: bigint): (self: bigint) => bigint;
  (self: bigint, that: bigint): bigint;
};

min

Added in v2.0.0 Source

Returns the minimum between two bigints.

When to use

Use to select the smaller of two bigint values.

See

  • max for selecting the larger value

Signature

declare const min: {
  (that: bigint): (self: bigint) => bigint;
  (self: bigint, that: bigint): bigint;
};

multiply

Added in v2.0.0 Source

Provides a multiplication operation on bigints.

When to use

Use to multiply two bigint values.

See

  • multiplyAll for multiplying an iterable of bigint values

Signature

declare const multiply: {
  (that: bigint): (self: bigint) => bigint;
  (self: bigint, that: bigint): bigint;
};

multiplyAll

Added in v2.0.0 Source

Takes an Iterable of bigints and returns their product as a single bigint. Returns 1n for an empty iterable.

When to use

Use to multiply all bigint values in an iterable.

See

Signature

declare function multiplyAll(collection: Iterable<bigint>): bigint;

Reducer for combining bigints using multiplication.

When to use

Use to multiply many bigint values through APIs that consume a Reducer.

Details

The initial value is 1n, so combineAll([]) returns 1n.

See

Signature

declare const ReducerMultiply: Reducer.Reducer<bigint>;

ReducerSum

Added in v4.0.0 Source

Reducer for combining bigints using addition.

When to use

Use to sum many bigint values through APIs that consume a Reducer.

Details

The initial value is 0n, so combineAll([]) returns 0n.

See

Signature

declare const ReducerSum: Reducer.Reducer<bigint>;

remainder

Added in v4.0.0 Source

Returns the JavaScript remainder of dividing one bigint by another.

When to use

Use when you want native remainder semantics, including signed remainders and a thrown division-by-zero error.

Gotchas

Throws a RangeError when the divisor is 0n.

See

  • divide for quotient calculation with division-by-zero represented as Option.none

Signature

declare const remainder: {
  (divisor: bigint): (self: bigint) => bigint;
  (self: bigint, divisor: bigint): bigint;
};

sign

Added in v2.0.0 Source

Determines the sign of a given bigint.

When to use

Use to classify a bigint as negative, zero, or positive.

Signature

declare function sign(n: bigint): Ordering;

sqrt

Added in v2.0.0 Source

Computes the integer square root of a bigint safely.

When to use

Use to compute an integer square root while representing negative input as Option.none.

Details

For non-perfect squares, returns the largest bigint whose square is less than or equal to the input. Returns Option.none() when the input is negative.

See

  • sqrtUnsafe for square root computation that throws on negative input

Signature

declare function sqrt(n: bigint): Option<bigint>;

sqrtUnsafe

Added in v4.0.0 Source

Returns the integer square root of a non-negative bigint.

When to use

Use when you need to compute an integer square root for a bigint that has already been validated as non-negative, and you want negative input to throw instead of returning Option.none.

Details

For non-perfect squares, returns the largest bigint whose square is less than or equal to the input.

Gotchas

Throws a RangeError if the input is negative.

See

  • sqrt for returning Option.none when the input is negative

Signature

declare function sqrtUnsafe(n: bigint): bigint;

subtract

Added in v2.0.0 Source

Provides a subtraction operation on bigints.

When to use

Use to subtract one bigint value from another.

Signature

declare const subtract: {
  (that: bigint): (self: bigint) => bigint;
  (self: bigint, that: bigint): bigint;
};

sum

Added in v2.0.0 Source

Provides an addition operation on bigints.

When to use

Use when you need a binary addition function for piping or higher-order APIs instead of the infix addition operator.

See

  • sumAll for summing an iterable of bigint values

Signature

declare const sum: {
  (that: bigint): (self: bigint) => bigint;
  (self: bigint, that: bigint): bigint;
};

sumAll

Added in v2.0.0 Source

Takes an Iterable of bigints and returns their sum as a single bigint. Returns 0n for an empty iterable.

When to use

Use when you want an immediate aggregate from an iterable instead of a folding reducer owned by another API.

See

  • sum for adding two bigint values
  • ReducerSum for summing through APIs that consume a Reducer

Signature

declare function sumAll(collection: Iterable<bigint>): bigint;

Predicates

between

Added in v2.0.0 Source

Checks whether a bigint is between a minimum and maximum value (inclusive).

When to use

Use to test whether a bigint falls inside an inclusive range.

See

  • clamp for forcing a bigint into an inclusive range

Signature

declare const between: {
  (options: { maximum: bigint; minimum: bigint }): (self: bigint) => boolean;
  (
    self: bigint,
    options: {
      maximum: bigint;
      minimum: bigint;
    },
  ): boolean;
};

Returns true if the first argument is greater than the second, otherwise false.

When to use

Use to test whether one bigint is strictly greater than another.

Signature

declare const isGreaterThan: {
  (that: bigint): (self: bigint) => boolean;
  (self: bigint, that: bigint): boolean;
};

Returns a function that checks if a given bigint is greater than or equal to the provided one.

When to use

Use to test whether one bigint is greater than or equal to another.

Signature

declare const isGreaterThanOrEqualTo: {
  (that: bigint): (self: bigint) => boolean;
  (self: bigint, that: bigint): boolean;
};

isLessThan

Added in v4.0.0 Source

Returns true if the first argument is less than the second, otherwise false.

When to use

Use to test whether one bigint is strictly less than another.

Signature

declare const isLessThan: {
  (that: bigint): (self: bigint) => boolean;
  (self: bigint, that: bigint): boolean;
};

Returns a function that checks if a given bigint is less than or equal to the provided one.

When to use

Use to test whether one bigint is less than or equal to another.

Signature

declare const isLessThanOrEqualTo: {
  (that: bigint): (self: bigint) => boolean;
  (self: bigint, that: bigint): boolean;
};