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