mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
* 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
22 lines
484 B
Plaintext
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";
|