/**
 * This module provides utility functions and type class instances for working with the `bigint` type in TypeScript.
 * It includes functions for basic arithmetic operations.
 *
 * @since 2.0.0
 */

import * as Combiner from "./Combiner.ts"
import * as Equ from "./Equivalence.ts"
import { dual } from "./Function.ts"
import * as Option from "./Option.ts"
import * as order from "./Order.ts"
import type { Ordering } from "./Ordering.ts"
import * as predicate from "./Predicate.ts"
import * as Reducer from "./Reducer.ts"

/**
 * Reference to the global BigInt constructor.
 *
 * @example
 * ```ts
 * import * as BigInt from "effect/BigInt"
 *
 * const bigInt = BigInt.BigInt(123)
 * console.log(bigInt) // 123n
 *
 * const fromString = BigInt.BigInt("456")
 * console.log(fromString) // 456n
 * ```
 *
 * @category constructors
 * @since 4.0.0
 */
export const BigInt = globalThis.BigInt

const bigint0 = BigInt(0)
const bigint1 = BigInt(1)
const bigint2 = BigInt(2)

/**
 * Tests if a value is a `bigint`.
 *
 * @example
 * ```ts
 * import { isBigInt } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(isBigInt(1n), true)
 * assert.deepStrictEqual(isBigInt(1), false)
 * ```
 *
 * @category guards
 * @since 2.0.0
 */
export const isBigInt: (u: unknown) => u is bigint = predicate.isBigInt

/**
 * Provides an addition operation on `bigint`s.
 *
 * @example
 * ```ts
 * import { sum } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(sum(2n, 3n), 5n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const sum: {
  /**
   * Provides an addition operation on `bigint`s.
   *
   * @example
   * ```ts
   * import { sum } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(sum(2n, 3n), 5n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => bigint
  /**
   * Provides an addition operation on `bigint`s.
   *
   * @example
   * ```ts
   * import { sum } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(sum(2n, 3n), 5n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (self: bigint, that: bigint): bigint
} = dual(2, (self: bigint, that: bigint): bigint => self + that)

/**
 * Provides a multiplication operation on `bigint`s.
 *
 * @example
 * ```ts
 * import { multiply } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(multiply(2n, 3n), 6n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const multiply: {
  /**
   * Provides a multiplication operation on `bigint`s.
   *
   * @example
   * ```ts
   * import { multiply } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(multiply(2n, 3n), 6n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => bigint
  /**
   * Provides a multiplication operation on `bigint`s.
   *
   * @example
   * ```ts
   * import { multiply } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(multiply(2n, 3n), 6n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (self: bigint, that: bigint): bigint
} = dual(2, (self: bigint, that: bigint): bigint => self * that)

/**
 * Provides a subtraction operation on `bigint`s.
 *
 * @example
 * ```ts
 * import { subtract } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(subtract(2n, 3n), -1n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const subtract: {
  /**
   * Provides a subtraction operation on `bigint`s.
   *
   * @example
   * ```ts
   * import { subtract } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(subtract(2n, 3n), -1n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => bigint
  /**
   * Provides a subtraction operation on `bigint`s.
   *
   * @example
   * ```ts
   * import { subtract } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(subtract(2n, 3n), -1n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (self: bigint, that: bigint): bigint
} = dual(2, (self: bigint, that: bigint): bigint => self - that)

/**
 * Provides a division operation on `bigint`s.
 *
 * If the dividend is not a multiple of the divisor the result will be a `bigint` value
 * which represents the integer division rounded down to the nearest integer.
 *
 * Returns `Option.none()` if the divisor is `0n`.
 *
 * @example
 * ```ts
 * import { divide } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * import { Option } from "effect"
 *
 * assert.deepStrictEqual(divide(6n, 3n), Option.some(2n))
 * assert.deepStrictEqual(divide(6n, 0n), Option.none())
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const divide: {
  /**
   * Provides a division operation on `bigint`s.
   *
   * If the dividend is not a multiple of the divisor the result will be a `bigint` value
   * which represents the integer division rounded down to the nearest integer.
   *
   * Returns `Option.none()` if the divisor is `0n`.
   *
   * @example
   * ```ts
   * import { divide } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * import { Option } from "effect"
   *
   * assert.deepStrictEqual(divide(6n, 3n), Option.some(2n))
   * assert.deepStrictEqual(divide(6n, 0n), Option.none())
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => Option.Option<bigint>
  /**
   * Provides a division operation on `bigint`s.
   *
   * If the dividend is not a multiple of the divisor the result will be a `bigint` value
   * which represents the integer division rounded down to the nearest integer.
   *
   * Returns `Option.none()` if the divisor is `0n`.
   *
   * @example
   * ```ts
   * import { divide } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * import { Option } from "effect"
   *
   * assert.deepStrictEqual(divide(6n, 3n), Option.some(2n))
   * assert.deepStrictEqual(divide(6n, 0n), Option.none())
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (self: bigint, that: bigint): Option.Option<bigint>
} = dual(
  2,
  (self: bigint, that: bigint): Option.Option<bigint> => that === bigint0 ? Option.none() : Option.some(self / that)
)

/**
 * Provides a division operation on `bigint`s.
 *
 * If the dividend is not a multiple of the divisor the result will be a `bigint` value
 * which represents the integer division rounded down to the nearest integer.
 *
 * Throws a `RangeError` if the divisor is `0n`.
 *
 * @example
 * ```ts
 * import { divideUnsafe } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(divideUnsafe(6n, 3n), 2n)
 * assert.deepStrictEqual(divideUnsafe(6n, 4n), 1n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const divideUnsafe: {
  /**
   * Provides a division operation on `bigint`s.
   *
   * If the dividend is not a multiple of the divisor the result will be a `bigint` value
   * which represents the integer division rounded down to the nearest integer.
   *
   * Throws a `RangeError` if the divisor is `0n`.
   *
   * @example
   * ```ts
   * import { divideUnsafe } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(divideUnsafe(6n, 3n), 2n)
   * assert.deepStrictEqual(divideUnsafe(6n, 4n), 1n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => bigint
  /**
   * Provides a division operation on `bigint`s.
   *
   * If the dividend is not a multiple of the divisor the result will be a `bigint` value
   * which represents the integer division rounded down to the nearest integer.
   *
   * Throws a `RangeError` if the divisor is `0n`.
   *
   * @example
   * ```ts
   * import { divideUnsafe } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(divideUnsafe(6n, 3n), 2n)
   * assert.deepStrictEqual(divideUnsafe(6n, 4n), 1n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (self: bigint, that: bigint): bigint
} = dual(2, (self: bigint, that: bigint): bigint => self / that)

/**
 * Returns the result of adding `1n` to a given number.
 *
 * @example
 * ```ts
 * import { increment } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(increment(2n), 3n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const increment = (n: bigint): bigint => n + bigint1

/**
 * Decrements a number by `1n`.
 *
 * @example
 * ```ts
 * import { decrement } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(decrement(3n), 2n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const decrement = (n: bigint): bigint => n - bigint1

/**
 * Provides an `Order` instance for `bigint` that allows comparing and sorting BigInt values.
 *
 * @example
 * ```ts
 * import * as BigInt from "effect/BigInt"
 *
 * const a = 123n
 * const b = 456n
 * const c = 123n
 *
 * console.log(BigInt.Order(a, b)) // -1 (a < b)
 * console.log(BigInt.Order(b, a)) // 1 (b > a)
 * console.log(BigInt.Order(a, c)) // 0 (a === c)
 * ```
 *
 * @category instances
 * @since 2.0.0
 */
export const Order: order.Order<bigint> = order.BigInt

/**
 * An `Equivalence` instance for bigints using strict equality (`===`).
 *
 * @example
 * ```ts
 * import { BigInt } from "effect"
 *
 * console.log(BigInt.Equivalence(1n, 1n)) // true
 * console.log(BigInt.Equivalence(1n, 2n)) // false
 * ```
 *
 * @category instances
 * @since 4.0.0
 */
export const Equivalence: Equ.Equivalence<bigint> = Equ.BigInt

/**
 * Returns `true` if the first argument is less than the second, otherwise `false`.
 *
 * @example
 * ```ts
 * import { isLessThan } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(isLessThan(2n, 3n), true)
 * assert.deepStrictEqual(isLessThan(3n, 3n), false)
 * assert.deepStrictEqual(isLessThan(4n, 3n), false)
 * ```
 *
 * @category predicates
 * @since 2.0.0
 */
export const isLessThan: {
  /**
   * Returns `true` if the first argument is less than the second, otherwise `false`.
   *
   * @example
   * ```ts
   * import { isLessThan } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(isLessThan(2n, 3n), true)
   * assert.deepStrictEqual(isLessThan(3n, 3n), false)
   * assert.deepStrictEqual(isLessThan(4n, 3n), false)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => boolean
  /**
   * Returns `true` if the first argument is less than the second, otherwise `false`.
   *
   * @example
   * ```ts
   * import { isLessThan } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(isLessThan(2n, 3n), true)
   * assert.deepStrictEqual(isLessThan(3n, 3n), false)
   * assert.deepStrictEqual(isLessThan(4n, 3n), false)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (self: bigint, that: bigint): boolean
} = order.isLessThan(Order)

/**
 * Returns a function that checks if a given `bigint` is less than or equal to the provided one.
 *
 * @example
 * ```ts
 * import { isLessThanOrEqualTo } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(isLessThanOrEqualTo(2n, 3n), true)
 * assert.deepStrictEqual(isLessThanOrEqualTo(3n, 3n), true)
 * assert.deepStrictEqual(isLessThanOrEqualTo(4n, 3n), false)
 * ```
 *
 * @category predicates
 * @since 2.0.0
 */
export const isLessThanOrEqualTo: {
  /**
   * Returns a function that checks if a given `bigint` is less than or equal to the provided one.
   *
   * @example
   * ```ts
   * import { isLessThanOrEqualTo } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(isLessThanOrEqualTo(2n, 3n), true)
   * assert.deepStrictEqual(isLessThanOrEqualTo(3n, 3n), true)
   * assert.deepStrictEqual(isLessThanOrEqualTo(4n, 3n), false)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => boolean
  /**
   * Returns a function that checks if a given `bigint` is less than or equal to the provided one.
   *
   * @example
   * ```ts
   * import { isLessThanOrEqualTo } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(isLessThanOrEqualTo(2n, 3n), true)
   * assert.deepStrictEqual(isLessThanOrEqualTo(3n, 3n), true)
   * assert.deepStrictEqual(isLessThanOrEqualTo(4n, 3n), false)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (self: bigint, that: bigint): boolean
} = order.isLessThanOrEqualTo(Order)

/**
 * Returns `true` if the first argument is greater than the second, otherwise `false`.
 *
 * @example
 * ```ts
 * import { isGreaterThan } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(isGreaterThan(2n, 3n), false)
 * assert.deepStrictEqual(isGreaterThan(3n, 3n), false)
 * assert.deepStrictEqual(isGreaterThan(4n, 3n), true)
 * ```
 *
 * @category predicates
 * @since 2.0.0
 */
export const isGreaterThan: {
  /**
   * Returns `true` if the first argument is greater than the second, otherwise `false`.
   *
   * @example
   * ```ts
   * import { isGreaterThan } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(isGreaterThan(2n, 3n), false)
   * assert.deepStrictEqual(isGreaterThan(3n, 3n), false)
   * assert.deepStrictEqual(isGreaterThan(4n, 3n), true)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => boolean
  /**
   * Returns `true` if the first argument is greater than the second, otherwise `false`.
   *
   * @example
   * ```ts
   * import { isGreaterThan } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(isGreaterThan(2n, 3n), false)
   * assert.deepStrictEqual(isGreaterThan(3n, 3n), false)
   * assert.deepStrictEqual(isGreaterThan(4n, 3n), true)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (self: bigint, that: bigint): boolean
} = order.isGreaterThan(Order)

/**
 * Returns a function that checks if a given `bigint` is greater than or equal to the provided one.
 *
 * @example
 * ```ts
 * import { isGreaterThanOrEqualTo } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(isGreaterThanOrEqualTo(2n, 3n), false)
 * assert.deepStrictEqual(isGreaterThanOrEqualTo(3n, 3n), true)
 * assert.deepStrictEqual(isGreaterThanOrEqualTo(4n, 3n), true)
 * ```
 *
 * @category predicates
 * @since 2.0.0
 */
export const isGreaterThanOrEqualTo: {
  /**
   * Returns a function that checks if a given `bigint` is greater than or equal to the provided one.
   *
   * @example
   * ```ts
   * import { isGreaterThanOrEqualTo } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(isGreaterThanOrEqualTo(2n, 3n), false)
   * assert.deepStrictEqual(isGreaterThanOrEqualTo(3n, 3n), true)
   * assert.deepStrictEqual(isGreaterThanOrEqualTo(4n, 3n), true)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => boolean
  /**
   * Returns a function that checks if a given `bigint` is greater than or equal to the provided one.
   *
   * @example
   * ```ts
   * import { isGreaterThanOrEqualTo } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(isGreaterThanOrEqualTo(2n, 3n), false)
   * assert.deepStrictEqual(isGreaterThanOrEqualTo(3n, 3n), true)
   * assert.deepStrictEqual(isGreaterThanOrEqualTo(4n, 3n), true)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (self: bigint, that: bigint): boolean
} = order.isGreaterThanOrEqualTo(Order)

/**
 * Checks if a `bigint` is between a `minimum` and `maximum` value (inclusive).
 *
 * @example
 * ```ts
 * import * as BigInt from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * const between = BigInt.between({ minimum: 0n, maximum: 5n })
 *
 * assert.deepStrictEqual(between(3n), true)
 * assert.deepStrictEqual(between(-1n), false)
 * assert.deepStrictEqual(between(6n), false)
 * ```
 *
 * @category predicates
 * @since 2.0.0
 */
export const between: {
  /**
   * Checks if a `bigint` is between a `minimum` and `maximum` value (inclusive).
   *
   * @example
   * ```ts
   * import * as BigInt from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * const between = BigInt.between({ minimum: 0n, maximum: 5n })
   *
   * assert.deepStrictEqual(between(3n), true)
   * assert.deepStrictEqual(between(-1n), false)
   * assert.deepStrictEqual(between(6n), false)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (
    options: {
      minimum: bigint
      maximum: bigint
    }
  ): (self: bigint) => boolean
  /**
   * Checks if a `bigint` is between a `minimum` and `maximum` value (inclusive).
   *
   * @example
   * ```ts
   * import * as BigInt from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * const between = BigInt.between({ minimum: 0n, maximum: 5n })
   *
   * assert.deepStrictEqual(between(3n), true)
   * assert.deepStrictEqual(between(-1n), false)
   * assert.deepStrictEqual(between(6n), false)
   * ```
   *
   * @category predicates
   * @since 2.0.0
   */
  (
    self: bigint,
    options: {
      minimum: bigint
      maximum: bigint
    }
  ): boolean
} = order.isBetween(Order)

/**
 * Restricts the given `bigint` to be within the range specified by the `minimum` and `maximum` values.
 *
 * - If the `bigint` is less than the `minimum` value, the function returns the `minimum` value.
 * - If the `bigint` is greater than the `maximum` value, the function returns the `maximum` value.
 * - Otherwise, it returns the original `bigint`.
 *
 * @example
 * ```ts
 * import * as BigInt from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * const clamp = BigInt.clamp({ minimum: 1n, maximum: 5n })
 *
 * assert.equal(clamp(3n), 3n)
 * assert.equal(clamp(0n), 1n)
 * assert.equal(clamp(6n), 5n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const clamp: {
  /**
   * Restricts the given `bigint` to be within the range specified by the `minimum` and `maximum` values.
   *
   * - If the `bigint` is less than the `minimum` value, the function returns the `minimum` value.
   * - If the `bigint` is greater than the `maximum` value, the function returns the `maximum` value.
   * - Otherwise, it returns the original `bigint`.
   *
   * @example
   * ```ts
   * import * as BigInt from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * const clamp = BigInt.clamp({ minimum: 1n, maximum: 5n })
   *
   * assert.equal(clamp(3n), 3n)
   * assert.equal(clamp(0n), 1n)
   * assert.equal(clamp(6n), 5n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (
    options: {
      minimum: bigint
      maximum: bigint
    }
  ): (self: bigint) => bigint
  /**
   * Restricts the given `bigint` to be within the range specified by the `minimum` and `maximum` values.
   *
   * - If the `bigint` is less than the `minimum` value, the function returns the `minimum` value.
   * - If the `bigint` is greater than the `maximum` value, the function returns the `maximum` value.
   * - Otherwise, it returns the original `bigint`.
   *
   * @example
   * ```ts
   * import * as BigInt from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * const clamp = BigInt.clamp({ minimum: 1n, maximum: 5n })
   *
   * assert.equal(clamp(3n), 3n)
   * assert.equal(clamp(0n), 1n)
   * assert.equal(clamp(6n), 5n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (
    self: bigint,
    options: {
      minimum: bigint
      maximum: bigint
    }
  ): bigint
} = order.clamp(Order)

/**
 * Returns the minimum between two `bigint`s.
 *
 * @example
 * ```ts
 * import { min } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(min(2n, 3n), 2n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const min: {
  /**
   * Returns the minimum between two `bigint`s.
   *
   * @example
   * ```ts
   * import { min } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(min(2n, 3n), 2n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => bigint
  /**
   * Returns the minimum between two `bigint`s.
   *
   * @example
   * ```ts
   * import { min } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(min(2n, 3n), 2n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (self: bigint, that: bigint): bigint
} = order.min(Order)

/**
 * Returns the maximum between two `bigint`s.
 *
 * @example
 * ```ts
 * import { max } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(max(2n, 3n), 3n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const max: {
  /**
   * Returns the maximum between two `bigint`s.
   *
   * @example
   * ```ts
   * import { max } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(max(2n, 3n), 3n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => bigint
  /**
   * Returns the maximum between two `bigint`s.
   *
   * @example
   * ```ts
   * import { max } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(max(2n, 3n), 3n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (self: bigint, that: bigint): bigint
} = order.max(Order)

/**
 * Determines the sign of a given `bigint`.
 *
 * @example
 * ```ts
 * import { sign } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(sign(-5n), -1)
 * assert.deepStrictEqual(sign(0n), 0)
 * assert.deepStrictEqual(sign(5n), 1)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const sign = (n: bigint): Ordering => order.BigInt(n, bigint0)

/**
 * Determines the absolute value of a given `bigint`.
 *
 * @example
 * ```ts
 * import { abs } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(abs(-5n), 5n)
 * assert.deepStrictEqual(abs(0n), 0n)
 * assert.deepStrictEqual(abs(5n), 5n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const abs = (n: bigint): bigint => (n < bigint0 ? -n : n)

/**
 * Determines the greatest common divisor of two `bigint`s.
 *
 * @example
 * ```ts
 * import { gcd } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(gcd(2n, 3n), 1n)
 * assert.deepStrictEqual(gcd(2n, 4n), 2n)
 * assert.deepStrictEqual(gcd(16n, 24n), 8n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const gcd: {
  /**
   * Determines the greatest common divisor of two `bigint`s.
   *
   * @example
   * ```ts
   * import { gcd } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(gcd(2n, 3n), 1n)
   * assert.deepStrictEqual(gcd(2n, 4n), 2n)
   * assert.deepStrictEqual(gcd(16n, 24n), 8n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => bigint
  /**
   * Determines the greatest common divisor of two `bigint`s.
   *
   * @example
   * ```ts
   * import { gcd } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(gcd(2n, 3n), 1n)
   * assert.deepStrictEqual(gcd(2n, 4n), 2n)
   * assert.deepStrictEqual(gcd(16n, 24n), 8n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (self: bigint, that: bigint): bigint
} = dual(2, (self: bigint, that: bigint): bigint => {
  while (that !== bigint0) {
    const t = that
    that = self % that
    self = t
  }
  return self
})

/**
 * Determines the least common multiple of two `bigint`s.
 *
 * @example
 * ```ts
 * import { lcm } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(lcm(2n, 3n), 6n)
 * assert.deepStrictEqual(lcm(2n, 4n), 4n)
 * assert.deepStrictEqual(lcm(16n, 24n), 48n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const lcm: {
  /**
   * Determines the least common multiple of two `bigint`s.
   *
   * @example
   * ```ts
   * import { lcm } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(lcm(2n, 3n), 6n)
   * assert.deepStrictEqual(lcm(2n, 4n), 4n)
   * assert.deepStrictEqual(lcm(16n, 24n), 48n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (that: bigint): (self: bigint) => bigint
  /**
   * Determines the least common multiple of two `bigint`s.
   *
   * @example
   * ```ts
   * import { lcm } from "effect/BigInt"
   * import * as assert from "node:assert"
   *
   * assert.deepStrictEqual(lcm(2n, 3n), 6n)
   * assert.deepStrictEqual(lcm(2n, 4n), 4n)
   * assert.deepStrictEqual(lcm(16n, 24n), 48n)
   * ```
   *
   * @category math
   * @since 2.0.0
   */
  (self: bigint, that: bigint): bigint
} = dual(2, (self: bigint, that: bigint): bigint => (self * that) / gcd(self, that))

/**
 * Determines the square root of a given `bigint` unsafely. Throws if the given `bigint` is negative.
 *
 * @example
 * ```ts
 * import { sqrtUnsafe } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(sqrtUnsafe(4n), 2n)
 * assert.deepStrictEqual(sqrtUnsafe(9n), 3n)
 * assert.deepStrictEqual(sqrtUnsafe(16n), 4n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const sqrtUnsafe = (n: bigint): bigint => {
  if (n < bigint0) {
    throw new RangeError("Cannot take the square root of a negative number")
  }
  if (n < bigint2) {
    return n
  }
  let x = n / bigint2
  while (x * x > n) {
    x = ((n / x) + x) / bigint2
  }
  return x
}

/**
 * Determines the square root of a given `bigint` safely. Returns `Option.none()` if
 * the given `bigint` is negative.
 *
 * **Example**
 *
 * ```ts
 * import { BigInt } from "effect"
 *
 * BigInt.sqrt(4n) // Option.some(2n)
 * BigInt.sqrt(9n) // Option.some(3n)
 * BigInt.sqrt(16n) // Option.some(4n)
 * BigInt.sqrt(-1n) // Option.none()
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const sqrt = (n: bigint): Option.Option<bigint> =>
  isGreaterThanOrEqualTo(n, bigint0) ? Option.some(sqrtUnsafe(n)) : Option.none()

/**
 * Takes an `Iterable` of `bigint`s and returns their sum as a single `bigint
 *
 * @example
 * ```ts
 * import { sumAll } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(sumAll([2n, 3n, 4n]), 9n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const sumAll = (collection: Iterable<bigint>): bigint => {
  let out = bigint0
  for (const n of collection) {
    out += n
  }
  return out
}

/**
 * Takes an `Iterable` of `bigint`s and returns their multiplication as a single `number`.
 *
 * @example
 * ```ts
 * import { multiplyAll } from "effect/BigInt"
 * import * as assert from "node:assert"
 *
 * assert.deepStrictEqual(multiplyAll([2n, 3n, 4n]), 24n)
 * ```
 *
 * @category math
 * @since 2.0.0
 */
export const multiplyAll = (collection: Iterable<bigint>): bigint => {
  let out = bigint1
  for (const n of collection) {
    if (n === bigint0) {
      return bigint0
    }
    out *= n
  }
  return out
}

/**
 * Converts a `bigint` to a `number`.
 *
 * If the `bigint` is outside the safe integer range for JavaScript (`Number.MAX_SAFE_INTEGER`
 * and `Number.MIN_SAFE_INTEGER`), it returns `Option.none()`.
 *
 * @example
 * ```ts
 * import { BigInt as BI } from "effect"
 *
 * BI.toNumber(42n) // Option.some(42)
 * BI.toNumber(BigInt(Number.MAX_SAFE_INTEGER) + 1n) // Option.none()
 * BI.toNumber(BigInt(Number.MIN_SAFE_INTEGER) - 1n) // Option.none()
 * ```
 *
 * @category conversions
 * @since 2.0.0
 */
export const toNumber = (b: bigint): Option.Option<number> => {
  if (b > BigInt(Number.MAX_SAFE_INTEGER) || b < BigInt(Number.MIN_SAFE_INTEGER)) {
    return Option.none()
  }
  return Option.some(Number(b))
}

/**
 * Converts a string to a `bigint`.
 *
 * If the string is empty or contains characters that cannot be converted into a
 * `bigint`, it returns `Option.none()`.
 *
 * @example
 * ```ts
 * import { BigInt } from "effect"
 *
 * BigInt.fromString("42") // Option.some(42n)
 * BigInt.fromString(" ") // Option.none()
 * BigInt.fromString("a") // Option.none()
 * ```
 *
 * @category conversions
 * @since 2.4.12
 */
export const fromString = (s: string): Option.Option<bigint> => {
  try {
    return s.trim() === ""
      ? Option.none()
      : Option.some(BigInt(s))
  } catch {
    return Option.none()
  }
}

/**
 * Converts a number to a `bigint`.
 *
 * 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()`.
 *
 * @example
 * ```ts
 * import { BigInt } from "effect"
 *
 * BigInt.fromNumber(42) // Option.some(42n)
 *
 * BigInt.fromNumber(Number.MAX_SAFE_INTEGER + 1) // Option.none()
 * BigInt.fromNumber(Number.MIN_SAFE_INTEGER - 1) // Option.none()
 * ```
 *
 * @category conversions
 * @since 2.4.12
 */
export function fromNumber(n: number): Option.Option<bigint> {
  if (n > Number.MAX_SAFE_INTEGER || n < Number.MIN_SAFE_INTEGER) {
    return Option.none()
  }

  try {
    return Option.some(BigInt(n))
  } catch {
    return Option.none()
  }
}

/**
 * Returns the remainder of dividing the first `bigint` by the second `bigint`.
 *
 * @example
 * ```ts
 * import { BigInt } from "effect"
 *
 * BigInt.remainder(10n, 3n) // 1n
 *
 * BigInt.remainder(15n, 4n) // 3n
 * ```
 *
 * @category math
 * @since 4.0.0
 */
export const remainder: {
  /**
   * Returns the remainder of dividing the first `bigint` by the second `bigint`.
   *
   * @example
   * ```ts
   * import { BigInt } from "effect"
   *
   * BigInt.remainder(10n, 3n) // 1n
   *
   * BigInt.remainder(15n, 4n) // 3n
   * ```
   *
   * @category math
   * @since 4.0.0
   */
  (divisor: bigint): (self: bigint) => bigint
  /**
   * Returns the remainder of dividing the first `bigint` by the second `bigint`.
   *
   * @example
   * ```ts
   * import { BigInt } from "effect"
   *
   * BigInt.remainder(10n, 3n) // 1n
   *
   * BigInt.remainder(15n, 4n) // 3n
   * ```
   *
   * @category math
   * @since 4.0.0
   */
  (self: bigint, divisor: bigint): bigint
} = dual(2, (self: bigint, divisor: bigint): bigint => self % divisor)

/**
 * A `Reducer` for combining `bigint`s using addition.
 *
 * @since 4.0.0
 */
export const ReducerSum: Reducer.Reducer<bigint> = Reducer.make((a, b) => a + b, bigint0)

/**
 * A `Reducer` for combining `bigint`s using multiplication.
 *
 * @since 4.0.0
 */
export const ReducerMultiply: Reducer.Reducer<bigint> = Reducer.make((a, b) => a * b, bigint1, (collection) => {
  let acc = bigint1
  for (const n of collection) {
    if (n === bigint0) return bigint0
    acc *= n
  }
  return acc
})

/**
 * A `Combiner` that returns the maximum `bigint`.
 *
 * @since 4.0.0
 */
export const CombinerMax: Combiner.Combiner<bigint> = Combiner.max(Order)

/**
 * A `Combiner` that returns the minimum `bigint`.
 *
 * @since 4.0.0
 */
export const CombinerMin: Combiner.Combiner<bigint> = Combiner.min(Order)
