Example #1
0
 public bool TryGetValue(WordChar wordChar, out ImmutableHashSet <string> value)
 {
     return(Map.TryGetValue(wordChar, out value));
 }
Example #2
0
 public bool TryGetValue(string word, int index, out ImmutableHashSet <string> value)
 {
     return(Map.TryGetValue(WordChar.Create(word, index), out value));
 }
Example #3
0
 public ImmutableHashSet <string> this[string value, int index]
 {
     get { return(Map[WordChar.Create(value, index)]); }
 }