Examples for 'rlang::is_empty'


Is object an empty vector or NULL?

Aliases: is_empty

Keywords:

### ** Examples

is_empty(NULL)
[1] TRUE
is_empty(list())
[1] TRUE
is_empty(list(NULL))
[1] FALSE

[Package rlang version 1.1.4 Index]