Exemplo n.º 1
0
 bool contains(cstring_span<> word) const { return symbols_.find(word) != kNullIndex; }
Exemplo n.º 2
0
 bool contains(std::string const& word) const { return symbols_.find(word) != kNullIndex; }
Exemplo n.º 3
0
 Sym sym(std::string const& word) const {
   SymInt const i = symbols_.find(word);
   return i == kNullIndex ? NoSymbol : symForIndex(i);
 }
Exemplo n.º 4
0
 Sym sym(cstring_span<> word) const {
   SymInt const i = symbols_.find(word);
   return i == kNullIndex ? NoSymbol : symForIndex(i);
 }
Exemplo n.º 5
0
 SymInt index(std::string const& word) const { return symbols_.find(word); }