SteppedRange
struct SteppedRange<T> where T is integralimport SteppedRange from Wax;An integral range carrying an explicit positive stride and exclusive end. Construct through
Range.Step to validate the stride.
Members
startfield
public T startThe inclusive first value.
endfield
public T endThe exclusive upper bound.
stepfield
public T stepThe positive increment between successive values.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.
constructorconstructor
public constructor ()Provided by the compiler.