R/maybe.R
filter_justs.Rd
Filter and unwrap a list of 'Just' values
filter_justs(.l)
List of maybe values
A list of values
filter_justs(list(just(1), nothing(), just("a"))) #> [[1]] #> [1] 1 #> #> [[2]] #> [1] "a" #>