flatbuffers/tests/dictionary_lookup.fbs

12 lines
166 B
Plaintext

namespace DictionaryLookup;
table LongFloatEntry {
key: long (key);
value: float;
}
table LongFloatMap {
entries: [LongFloatEntry];
}
root_type LongFloatMap;