Nothing
# # ' @export
# `@.default` <- function(x, name) {
# if (isS4(x))
# methods::slot(x, name)
# else
# attr(x, name, TRUE)
# }
#
# # ' @export
# `@<-.default` <- function(x, name, value) {
# if (isS4(x))
# methods::`slot<-`(x, name, value = value)
# else
# `attr<-`(x, name, value)
# }
#
# # ' @importFrom utils .AtNames findMatches
# .AtNames.default <- function(x, pattern = "") {
# if (isS4(x))
# findMatches(pattern, methods::slotNames(x))
# else
# findMatches(pattern, names(attributes(x)))
# }
#
# on_load_register_.AtNames.default <- function() {
# # if we register via NAMESPACE, we get warning
# # about overwriting utils:::.AtNmaes.default
# registerS3method(".AtNames", "default", .AtNames.default)
# }
.onLoad <- function(...) {
S7::methods_register()
asNamespace("dotty")$dotify()
# on_load_register_.AtNames.default()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.