Can anyone tell me the most efficient way to make a negative NSNumber positive?
If I have -1.5 I want to cheaply make it 1.5. Also If I feed 1.5 into the same function I still want 1.5
Cheating by subtracting the same number twice is not what I'm looking for.
If I have -1.5 I want to cheaply make it 1.5. Also If I feed 1.5 into the same function I still want 1.5
Cheating by subtracting the same number twice is not what I'm looking for.