I have a list of periods that I would like to convert it to behave like a vector (eventually to add as a column in a data frame).
library(lubridate)
x <- list(ms("09:10"), ms("09:02"), ms("1:10"))
# some_function(x)
# with output
ms(c("09:10", "09:02", "1:10"))
unlist
and purrr::flatten
don't work in this case since it loses it period properties.