list.is {StabPerf}R Documentation

A modified 'is' which recursively digs into 'list' objects via an 'lapply'

Description

Similar to is in that it identifies the types of objects, but for all of the elements of a list.

Usage

list.is(list, ...)

Arguments

list list.
... Any arguments to be passed on to is

Details

This is a list-aware version of is, it digs into a given list and performs is on the individual list elements. Useful for extracting the elements of a list of a given type.

Value

vector. Result of is, either character or logical

See Also

is

Examples

objects.of.mytype <- some.list[list.is(some.list, this-is-escaped-codenormal-bracket7bracket-normal)]

[Package StabPerf version 0.5 Index]