vetr
vetr copied to clipboard
Avoid additional `match.call` Call Until Needed
In success case, we should not need to match.call the user call. Can it be avoided?
More generally, the match.call
used within functions should be avoidable by using a wrapper to functions (See #66) so that information is "compiled" in and does not need to be regenerated each time the function is called.