2 references to IsInteger
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1829public static bool IsInteger(Half value) => float.IsInteger((float)value);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1135public static bool IsOddInteger(float value) => IsInteger(value) && (Abs((value) % 2) == 1);