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
Settingpermanent = TRUE will make these settings persist between sessions.
Details
Many infix operators in base R functions are hard coded to return an error on character vector inputs.This is unlike the behavior for custom classes, where they can be modified using the R dispatch system.
While these operators can't be modified for string input, they CAN be overwritten. Instringplus, the built-in operators are overwritten to check if the first argument is a character vector; if so it concatenates (or formats) the two arguments, if not it falls back to the built-in operator.
This overridden function should not interfere with normal dispatch.