Base32Impl.encoder

Creates an InputRange which lazily encodes source.

template encoder(Range)
encoder
(
Range source
)
if (
isInputRange!Range &&
is(ElementType!Range : ubyte)
)

Members

Functions

encoder
auto encoder(Range source)
Undocumented in source. Be warned that the author may not have intended to support it.

Structs

Encoder
struct Encoder
Undocumented in source.

Parameters

source

An InputRange to _encode.

Return Value

An InputRange which iterates over source and lazily encodes it. If source is a ForwardRange, the returned range will be the same.

Meta