You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason pow(x,y) does y^x, for example pow(1,8) = 8 and pow(2,3) = 9. This does not seem to be expected behavior, as the docs specify it the usual way:
pow behaves as other binary functions (e.g., add, sub etc.) in a way that it has reversed arguments to ease currying.
As we introduced the placeholder _ to forward args this is no longer needed. Still, for backwards compatibility I'd leave it as-is for the standard operators. For pow itself we can change it as the docs stated otherwise.
For some reason
pow(x,y)
doesy^x
, for examplepow(1,8) = 8
andpow(2,3) = 9
. This does not seem to be expected behavior, as the docs specify it the usual way:Mages/doc/functions.md
Line 25 in 682b68a
The text was updated successfully, but these errors were encountered: