Implements two new methods on the Num class: isInfinity checks if a number is positive or negative infinity using isinf(), and isInteger checks if a number has no fractional component, returning false for NaN and infinity. Includes C primitives, documentation, and test files.
4 lines
144 B
Plaintext
4 lines
144 B
Plaintext
System.print(123.isInfinity) // expect: false
|
|
System.print((1/0).isInfinity) // expect: true
|
|
System.print((-10/0).isInfinity) // expect: true
|