Skip to contents

Check if object does not exists

Usage

not.exists(x)

Arguments

x

object

Value

a boolean value to indicate if entry does not exists

Examples

go = 7
not.exists("exis") # TRUE
#> [1] TRUE
not.exists("go") # FALSE
#> [1] TRUE
if(not.exists('hallo')) message("yes") # NULL
#> yes