On 06/12/2011 11:09, Moritz Lenz wrote:
Hi all,for some operations in Rakudo it is important for us to check if a num value is one of Inf/-Inf/NaN.
Something like the following should work without new ops:
isNaN(d) { return d != d; }
isInf(d) { return d > DBL_MAX; }
isNegativeInf(d) { return d < -DBL_MAX; }
Nick
_______________________________________________
http://lists.parrot.org/mailman/listinfo/parrot-dev
