Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
4769bb4dde68673fcddb77bf471b51f61bcf4dd7
/
.
/
third_party
/
flatbuffers
/
tests
/
dictionary_lookup.fbs
blob: 45b9dce47a0e44985e67d8e1e8b5ec0305caf7d9 [
file
] [
log
] [
blame
]
Austin Schuh
2dd86a9
2022-09-14 21:19:23 -0700
[
diff
] [
blame
]
1
namespace
DictionaryLookup
;
2
3
table
LongFloatEntry
{
4
key
:
long
(
key
);
5
value
:
float
;
6
}
7
8
table
LongFloatMap
{
9
entries
:
[
LongFloatEntry
];
10
}
11
root_type
LongFloatMap
;