7 references to Truncate
Microsoft.ML.Transforms (2)
Expression\BuiltinFunctions.cs (2)
264FunctionProviderUtils.Fn<R8, R8>(Math.Truncate)); 685return (R4)Math.Truncate(a);
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\DateTime.cs (1)
873double integralPart = Math.Truncate(value);
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
696public static double Truncate(double x) => Math.Truncate(x);
src\libraries\System.Private.CoreLib\src\System\Math.cs (2)
1380return Truncate(value + CopySign(0.49999999999999994, value)); 1388return Truncate(value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (1)
1587return (T)(object)Math.Truncate((double)(object)value);