Segmenter.Base.Iterators.StartIterator.StartIterator C# (CSharp) Method

StartIterator() public method

Initializes a new instance of the StartIterator class.
public StartIterator ( ComplexChain chain, int windowLength, int step ) : System
chain Segmenter.Base.Sequences.ComplexChain /// An iterable sequence ///
windowLength int /// Length of a word (window of cutting) ///
step int /// The number of elements through which the pointer will jump at the next iteration ///
return System
        public StartIterator(ComplexChain chain, int windowLength, int step)
            : base(chain, windowLength, step)
        {
        }