Taking for example the sin function which takes an argument.
I want to be able to evalue 24sin as sin(24), basically taking lhs as the argument for my function.
Creating the operator with custom token and the relation to multiply is easy but there is no documentation on how to add functionnalities to existing functions.
It seems that maybe a rewrite rule should be used ?
Any thoughts on this ?