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