# ---
# repo: r-lib/rlang
# file: standalone-zeallot.R
# last-updated: 2020-11-24
# license: https://unlicense.org
# imports: rlang
# ---
#
# This drop-in file implements a simple version of zeallot::`%<-%`.
#
# nocov start
`%<-%` <- function(lhs, value) {
lhs <- substitute(lhs)
env <- caller_env()
if (!is_call(lhs, "c")) {
abort("The left-hand side of `%<-%` must be a call to `c()`.")
}
vars <- as.list(lhs[-1])
if (length(value) != length(vars)) {
abort("The left- and right-hand sides of `%<-%` must be the same length.")
}
for (i in seq_along(vars)) {
var <- vars[[i]]
if (!is_symbol(var)) {
abort(paste0("Element ", i, " of the left-hand side of `%<-%` must be a symbol."))
}
env[[as_string(var)]] <- value[[i]]
}
invisible(value)
}
# nocov end
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.