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