not.exists {quickcode}R Documentation

Not exists

Description

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
not.exists("go") # FALSE
if(not.exists('hallo')) message("yes") # NULL

[Package quickcode version 0.8 Index]