Learn R Programming

container (version 1.0.5)

has: Check for Element

Description

Check for Element

Usage

has(x, ...)

# S3 method for Container has(x, elem, ...)

# S3 method for dict.table has(x, column, ...)

Value

TRUE if element is in x and otherwise FALSE.

For dict.table, TRUE if column exists in x otherwise FALSE.

Arguments

x

any R object.

...

additional arguments to be passed to or from methods.

elem

some element to be found.

column

vector of values with the same length as the number of rows of the dict.table.

See Also

has_name()

Examples

Run this code

co = container(1, 2, mean)
has(co, 1)                   # TRUE
has(co, mean)                # TRUE
has(co, 1:2)                 # FALSE

dit = dict.table(a = 1:3, b = as.list(4:6))
has(dit, 1:3)            # TRUE
has(dit, 4:6)            # FALSE
has(dit, as.list(4:6))   # TRUE

Run the code above in your browser using DataLab