Map a function over a list and filter only 'Just' values
Arguments
- .l
List of values
- .f
A maybe returning function to apply to the maybe values
- ...
Named arguments for the function .f
Examples
filter_map(list(-1, "2", 9), maybe(sqrt))
#> [[1]]
#> [1] 3
#>