brodieG / vetr

Trust, but Verify
79 stars 2 forks source link

Avoid additional `match.call` Call Until Needed #97

Open brodieG opened 5 years ago

brodieG commented 5 years ago

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.