Segmenter.Base.Collectors.FrequencyDictionary.this C# (CSharp) 메소드

this() 공개 메소드

Returns the list of positions to which the specified word is mapped, or null if this FrequencyDictionary contains no mapping for the word.
public this ( string str ) : List
str string the word whose associated the list of positions is to be returned
리턴 List
        public List<int> this[string str]
        {
            get { return new List<int>(words[str]); }
        }