FloatType and FloatListType
These classes represent the "float" and "float-list" data types respectively
FloatTypeshould be called with a single argument of type number or string. The value may have a sign ("-" or "+")The value must have a decimal point.
new FloatType("-35.00");
new FloatType(90.234);FloatListTypeshould be called with a single argument that is an array ofFloatTypesnew FloatListType([
new FloatType(1.455),
new FloatType(-345),
new FloatType("33.000"),
]);