2 references to IEEERemainder
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1561public static Half Ieee754Remainder(Half left, Half right) => (Half)MathF.IEEERemainder((float)left, (float)right);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
837public static float Ieee754Remainder(float left, float right) => MathF.IEEERemainder(left, right);