• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1namespace DictionaryLookup;
2
3table LongFloatEntry {
4  key: long (key);
5  value: float;
6}
7
8table LongFloatMap {
9  entries: [LongFloatEntry];
10}
11root_type LongFloatMap;
12