LibiadaCore.Misc.Iterators.IteratorEnd.Reset C# (CSharp) Method

Reset() public method

Returns iterator to the starting position. Before reading first value. IteratorEnd.Next() method should be called.
public Reset ( ) : void
return void
        public override void Reset()
        {
            Position = Source.GetLength() - Length + Step;
        }