Decoder.save

Saves the current iteration state.

This method is only available if the underlying range is a forward range

struct Decoder(Range)
@property
static if(isForwardRange!Range)
typeof(this)
save
()
if (
isInputRange!Range &&
is(ElementType!Range : char)
)

Return Value

Type: typeof(this)

A copy of this.

Meta