C# Класс Segmenter.Base.Iterators.StartIterator

An iterator shifts its pointer through a chain left to right until it reach the end of the chain.
Наследование: BaseIterator
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Current ( ) : List

The current.

HasNext ( ) : bool

The has next.

Move ( int position ) : bool

The move.

Next ( ) : List

The next.

Position ( ) : int

The position.

Reset ( ) : void

The reset.

StartIterator ( ComplexChain chain, int windowLength, int step ) : System

Initializes a new instance of the StartIterator class.

Описание методов

Current() публичный Метод

The current.
public Current ( ) : List
Результат List

HasNext() публичный Метод

The has next.
public HasNext ( ) : bool
Результат bool

Move() публичный Метод

The move.
public Move ( int position ) : bool
position int /// The position. ///
Результат bool

Next() публичный Метод

The next.
public Next ( ) : List
Результат List

Position() публичный Метод

The position.
public Position ( ) : int
Результат int

Reset() публичный Метод

The reset.
public Reset ( ) : void
Результат void

StartIterator() публичный Метод

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 ///
Результат System