3 references to Round
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (2)
2564public static Vector<double> Round(Vector<double> vector) => Round<double>(vector); 2568public static Vector<float> Round(Vector<float> vector) => Round<float>(vector);
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1164static Vector<T> ISimdVector<Vector<T>, T>.Round(Vector<T> vector) => Vector.Round(vector);