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
We now have op.from_string, unary.from_string, etc., functions that are used to get an operator from a string. It would be straightforward to allow strings to be used wherever operators are used, such as:
A.mxm(B, "min.+")
A.apply("+", 1)
C("+") << A
we'll need to distinguish "replace" string from operator strings
This is sugar, and, hence, pretty low priority. Thoughts?