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