Files
flatbuffers-bigfoot/tests/monster_extra.fbs
Vladimir Glavnyy e304f8c115 Extend the test of MonsterExtra (#5428)
* Extend the test of MonsterExtra

- Extend C++ test of MonsterExtra
- Add conversion of fbs/json NaNs to unsigned quiet-NaN
- Update documentation (cross-platform interoperability)

* Fix declaration of infinity constants int the test
2019-07-08 11:22:56 -07:00

22 lines
484 B
Plaintext

namespace MyGame;
// Not all programming languages support this extra table.
table MonsterExtra {
// Float-point values with NaN and Inf defaults.
d0:double = nan;
d1:double = -nan; // parser must ignore sign of NaN
d2:double = +inf;
d3:double = -inf;
f0:float = -nan; // parser must ignore sign of NaN
f1:float = +nan;
f2:float = +inf;
f3:float = -inf;
dvec : [double];
fvec : [float];
}
root_type MonsterExtra;
file_identifier "MONE";
file_extension "mon";