blob: 45b9dce47a0e44985e67d8e1e8b5ec0305caf7d9 [file] [log] [blame]
Austin Schuh2dd86a92022-09-14 21:19:23 -07001namespace DictionaryLookup;
2
3table LongFloatEntry {
4 key: long (key);
5 value: float;
6}
7
8table LongFloatMap {
9 entries: [LongFloatEntry];
10}
11root_type LongFloatMap;