コード例 #1
0
ファイル: WordCharMap.cs プロジェクト: JosefPihrt/Orang
 public bool TryGetValue(string word, int index, [NotNullWhen(true)] out ImmutableHashSet <string>?value)
 {
     return(Map.TryGetValue(WordChar.Create(word, index), out value));
 }
コード例 #2
0
ファイル: WordCharMap.cs プロジェクト: JosefPihrt/Orang
 public ImmutableHashSet <string> this[string value, int index]
 {
     get { return(Map[WordChar.Create(value, index)]); }
 }