#' Lazy R Object Checks
#'
#' @param x Any R object.
#'
#' @return A `logical(1)`.
#'
#' @export
is.tbl_lazy <- function(x) {
inherits(x = x, what = "tbl_lazy")
}
#' @rdname is.tbl_lazy
#' @export
is.tbl_spark <- function(x) {
inherits(x = x, what = "tbl_spark")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.