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