vote up 1 vote down star

I have an NSDecimal in a tight calculations loop, where I need to floor the value. I want to prevent creating fat NSDecimalNumber objects just for that. Is there a cost-efficient way to get a floor? That floor is just needed to calculate how many times another value might fit in there, with no rest. The NSDecimal API doesn't provide something like floor...

flag

67% accept rate

2 Answers

vote up 2 vote down check

You can use the NSDecimalRound() function with the NSRoundDown rounding mode:

NSDecimal d = ...;
NSDecimal floored;

NSDecimalRound(&floored, &d, 0, NSRoundDown);

For more info take a look at the docs here.

link|flag
vote up 1 vote down
NSDecimal result;
NSDecimalRound(&result, &decimal, 0, NSRoundDown);

(not tested)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.