12 lines
166 B
Plaintext
12 lines
166 B
Plaintext
namespace DictionaryLookup;
|
|
|
|
table LongFloatEntry {
|
|
key: long (key);
|
|
value: float;
|
|
}
|
|
|
|
table LongFloatMap {
|
|
entries: [LongFloatEntry];
|
|
}
|
|
root_type LongFloatMap;
|