2 references to Log
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1602
public static Half Log(Half x, Half newBase) => (Half)MathF.
Log
((float)x, (float)newBase);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
887
public static float Log(float x, float newBase) => MathF.
Log
(x, newBase);