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
Swift exposes all of the normal floating-point operations on `Decimal`,
so we're using that for our decimal number support now. It's easy to
convert that to `NSDecimalNumber` if desired.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -250,7 +250,7 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
250
250
251
251
#### Development
252
252
253
-
* Add full support for decimal numbers (on supported platforms). This takes the form of a new `JSON` variant `.decimal`, any relevant accessors, and full parsing/decoding support with the new option `.useDecimalNumbers`. With this option, any number that would have been decoded as a `Double` will be decoded as an `NSDecimalNumber` instead.
253
+
* Add full support for decimal numbers (on supported platforms). This takes the form of a new `JSON` variant `.decimal`, any relevant accessors, and full parsing/decoding support with the new option `.useDecimals`. With this option, any number that would have been decoded as a `Double` will be decoded as a `Decimal` instead.
254
254
* Add a set of `forEach` accessors for working with arrays, similar to the existing `map` and `flatMap` accessors.
0 commit comments