The OpenD Programming Language

BigIntView.coefficients

  1. inout(W)[] coefficients()
  2. auto coefficients()
    struct BigIntView(W)
    @safe @safe pure nothrow @nogc @property
    coefficients
    ()
    if (
    is(Unqual!W == ubyte) ||
    is(Unqual!W == ushort)
    ||
    is(Unqual!W == uint)
    ||
    is(Unqual!W == ulong)
    )

Return Value

Type: auto

a slice of coefficients starting from the least significant.

Meta