| 72 | |
| 73 | template<class T> |
| 74 | bool |
| 75 | StringTableT<T>::hasString(const T &s) const |
| 76 | { |
| 77 | typedef typename Table::template nth_index<1>::type StringSet; |
| 78 | const StringSet &strings = _table.template get<1>(); |
| 79 | return strings.find(s) != strings.end(); |
| 80 | } |
| 81 | |
| 82 | template<class T> |
| 83 | bool |
no outgoing calls