Nothing
#' Constructive options for class 'hexmode'
#'
#' These options will be used on objects of class 'hexmode'.
#'
#' Depending on `constructor`, we construct the object as follows:
#' * `"as.hexmode"` (default): We build the object using `as.hexmode()`
#' * `"next"` : Use the constructor for the next supported class.
#'
#' @param constructor String. Name of the function used to construct the object.
#' @param ... Additional options used by user defined constructors through the `opts` object
#' @param integer Whether to use `as.hexmode()` on integer rather than character
#' @return An object of class <constructive_options/constructive_options_hexmode>
#' @export
opts_hexmode <- function(constructor = c("as.hexmode", "next"), ..., integer = FALSE) {
abort_not_boolean(integer)
.cstr_options("hexmode", constructor = constructor[[1]], ..., integer = integer)
}
#' @export
#' @method .cstr_construct hexmode
.cstr_construct.hexmode <- function(x, ...) {
opts <- list(...)$opts$hexmode %||% opts_hexmode()
if (is_corrupted_hexmode(x) || opts$constructor == "next") return(NextMethod())
UseMethod(".cstr_construct.hexmode", structure(NA, class = opts$constructor))
}
is_corrupted_hexmode <- function(x) {
!(is.integer(x))
}
#' @export
#' @method .cstr_construct.hexmode as.hexmode
.cstr_construct.hexmode.as.hexmode <- function(x, ...) {
opts <- list(...)$opts$hexmode %||% opts_hexmode()
# we let attributes to the repair step
x_bkp <- x
attributes(x) <- NULL
if (opts$integer) {
code <- .cstr_apply(list(unclass(x)), "as.hexmode", ...)
} else {
code <- .cstr_apply(list(format.hexmode(x)), "as.hexmode", ...)
}
repair_attributes_hexmode(x_bkp, code, ...)
}
repair_attributes_hexmode <- function(x, code, pipe = NULL, ...) {
.cstr_repair_attributes(
x, code, pipe,
idiomatic_class = "hexmode",
...
)
}
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.