c.happy_result.Rd
Combine >1 objects of class happy_result
into
a list, or extend an existing happy_result_list
.
# S3 method for happy_result c(...) # S3 method for happy_result_list c(...)
... | Multiple |
---|
a list of happy_result
objects
# NOT RUN { happy1 <- read_happy('/output/path/prefix') happy2 <- read_happy('/another/path/prefix') happy_results <- c(happy1, happy2) class(happy_results) # happy_results_list # }