Encoder.save

Save the current iteration state of the range.

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

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

Return Value

Type: typeof(this)

A copy of this.

Meta