You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Constructing a dom.Decimal (which is typically what users want) from a number or string cannot be done in a single step unless you use ion.load(...), which is overkill.
Value.from(...) doesn't work. Because there is no hinting system (#620), Value.from will never return a dom.Decimal; a String maps to a dom.String, an integer Number maps to a dom.Integer, and a non-integer Number maps to a dom.Float.
The text was updated successfully, but these errors were encountered:
See this discussion.
Constructing a
dom.Decimal
(which is typically what users want) from a number or string cannot be done in a single step unless you useion.load(...)
, which is overkill.Value.from(...)
doesn't work. Because there is no hinting system (#620),Value.from
will never return adom.Decimal
; aString
maps to adom.String
, an integerNumber
maps to adom.Integer
, and a non-integerNumber
maps to adom.Float
.The text was updated successfully, but these errors were encountered: