Package: effect
Module: BigInt
Takes an Iterable of bigints and returns their multiplication as a single number.
Example
import * as assert from "node:assert"
import { multiplyAll } from "effect/BigInt"
assert.deepStrictEqual(multiplyAll([2n, 3n, 4n]), 24n)
Signature
declare const multiplyAll: (collection: Iterable<bigint>) => bigint
Since v2.0.0