2 references to Truncate
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
992
public static BFloat16 Truncate(BFloat16 x) => (BFloat16)float.
Truncate
((float)x);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1134
public static bool IsInteger(float value) => IsFinite(value) && (value ==
Truncate
(value));