| 237 | return GetPointer<const flatbuffers::String *>(VT_KEY); |
| 238 | } |
| 239 | bool KeyCompareLessThan(const KeyValue *o) const { |
| 240 | return *key() < *o->key(); |
| 241 | } |
| 242 | int KeyCompareWithValue(const char *val) const { |
| 243 | return strcmp(key()->c_str(), val); |
| 244 | } |