BigInt.opEquals

Compares this BigInt for equality with another BigInt, an unsigned long with sign flag, or a signed long.

  1. bool opEquals(BigInt rhs)
  2. bool opEquals(ulong rhs, bool rhsSign)
  3. bool opEquals(long rhs)
    struct BigInt(uint size64)
    @safe const @safe pure nothrow @nogc
    bool
    opEquals
    (
    long rhs
    )
    if (
    size64 &&
    size64 <= ushort.max
    )
  4. bool opEquals(uint rhs)
  5. bool opEquals(int rhs)