The OpenD Programming Language

BigIntView.opEquals

  1. bool opEquals(BigIntView!(const W) rhs)
  2. bool opEquals(long rhs)
    struct BigIntView(W)
    @safe @safe pure nothrow @nogc const scope
    bool
    opEquals
    (
    long rhs
    )
    if (
    is(Unqual!W == ubyte) ||
    is(Unqual!W == ushort)
    ||
    is(Unqual!W == uint)
    ||
    is(Unqual!W == ulong)
    )

Return Value

Type: bool

true if the integer and equals to rhs.

Meta