Deploying to gh-pages from @ agdamsbo/FreesearchR@54dd332cd8 🚀

This commit is contained in:
agdamsbo 2025-11-19 13:25:44 +00:00
commit 6d545337de
328 changed files with 12930 additions and 1662 deletions

View file

@ -0,0 +1,34 @@
# Return if available
Return if available
## Usage
``` r
if_not_missing(data, default = NULL)
```
## Arguments
- data:
vector
- default:
assigned value for missings
## Value
vector
## Examples
``` r
NULL |> if_not_missing("new")
#> [1] "new"
c(2, "a", NA) |> if_not_missing()
#> [1] "2" "a"
"See" |> if_not_missing()
#> [1] "See"
```