Reputation: 110062
What is the way to format a call to importFrom
while using roxygen2
?
I can see two approaches:
importFrom base %in%
or
importFrom base `%in%`
Obviously we wouldn't import a base function into a package but this is for demo's sake.
Upvotes: 2
Views: 376
Reputation: 110062
I tested it out HERE and it seems:
importFrom base %in%
is appropriate
Upvotes: 3