-
I'm just about to experiment with my first nested set of modules. Looking at the #' @export
box::use(./seq) Intuitively this makes perfect sense to me, but nevertheless I like reading technical descriptions to verify any assumptions I'm making by reading examples. I couldn't find explicit documentation of this pattern, however. As shown above, the single assignment (to The other shown example is: #' @export
box::use(./seq[...]) ... which differs in that now multiple objects are being exported via the single |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That’s right, I forgot to document this publicly; the relevant documentation exists, but it’s package internal and thus not indexed. Here it is: https://klmr.me/box/reference/parse_export_specs.html#note
I should also add that all the following expressions are recognised as “assignment”: name = value
name <- value
name <<- value
name := value
assign('name', value, …)
makeActiveBinding('name', value, envir) Does this answer your question? — At any rate, the documentation should obviously be public, and probably extended by concrete examples. |
Beta Was this translation helpful? Give feedback.
That’s right, I forgot to document this publicly; the relevant documentation exists, but it’s package internal and thus not indexed. Here it is: https://klmr.me/box/reference/parse_export_specs.html#note
I should also add…