4 lines
183 B
Text
4 lines
183 B
Text
def posinf = double.PositiveInfinity;
|
|
def a = IsInfinity(posinf); // a = true
|
|
def b = IsNegativeInfinity(posinf); // b = false
|
|
def c = IsPositiveInfinity(posinf); // c = true
|