powered by
Extend an object
extend_with(object, .class_name, ...)
A list
A class name to add
Extra information in the list
library(purrr) l <- list(important_number = 42) %>% add_class("my_list") l %>% extend_with( .class_name = "improved_list", url = "https://github.com/dynverse/dynverse" ) l
Run the code above in your browser using DataLab