Is it possible to define (+) function by R, s.t. able to work between its two arguments?
In other words, I'd like to delete %
from the following infix function (but I can not and I don't know how this problem can be solved):
`%(+)%` <- function(x,y) { x+(2*y) }
2 %(+)% 3