Segmenter.Base.Collectors.FrequencyDictionary.Fill C# (CSharp) Метод

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

Extracts new words and their places of occurrence from a current word sequence
public Fill ( ComplexChain sequence ) : void
sequence Segmenter.Base.Sequences.ComplexChain the current word sequence
Результат void
        public void Fill(ComplexChain sequence)
        {
            Clear();
            for (int index = 0; index < sequence.GetLength(); index++)
            {
                Put(sequence[index].ToString(), index);
            }
        }

Same methods

FrequencyDictionary::Fill ( string str ) : void