In other languages, there is often a fixed decimal object that can be used in place of IEEE float/doubles, to help guarantee precision. Does Objective-C have something similar? When I was looking, all I found was NSNumber, which seems to only deal with the standard primitive types. Is there another object I am missing?
Share
NSDecimalNumbermaybe?According to this post there is a
Decimaltype that does not use IEEE floating point representation.