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