sloop (version 1.0.0)

s3_dispatch: Illustrate S3 dispatch

Description

Illustrate S3 dispatch

Usage

s3_dispatch(call, env = parent.frame())

Arguments

call

Example call to S3 method

env

Environment in which to evaluate call

Examples

Run this code
# NOT RUN {
x <- Sys.time()
s3_dispatch(print(x))
s3_dispatch(is.numeric(x))
s3_dispatch(as.Date(x))
s3_dispatch(sum(x))

# Internal vs. regular generic
x1 <- 1
x2 <- structure(2, class = "double")

my_length <- function(x) UseMethod("my_length")
s3_dispatch(my_length(x1))
s3_dispatch(my_length(x2))

s3_dispatch(length(x1))
s3_dispatch(length(x2))
# }

Run the code above in your browser using DataLab