BigUIntAccumulator.view

struct BigUIntAccumulator(W, WordEndian endian = TargetEndian)
@safe pure nothrow @nogc @property
BigUIntView!(W, endian)
view
()
if (
is(Unqual!W == uint) ||
is(Unqual!W == ulong)
)

Return Value

Type: BigUIntView!(W, endian)

Current unsigned integer view. Note: The method may return a view with empty coefficients, which isn't usable. Put 0 or another number first to make the accumulator maintain a non-empty view.

Meta