Tyler Rinker
Tyler Rinker

Reputation: 110062

roxygen2 importFrom and binary operator

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

Answers (1)

Tyler Rinker
Tyler Rinker

Reputation: 110062

I tested it out HERE and it seems:

importFrom base %in%

is appropriate

Upvotes: 3

Related Questions