is.dict: Determines whether or not an object is an instance of a...

Description Usage Arguments Examples

Description

Determines the class of an object and checks to see if it's a dictionary.

Usage

1
  is.dict(object)

Arguments

object

any object

Examples

1
2
3
4
5
6
x <- dict("a"=1)
is.dict(x)
#TRUE
x <- list(1, 2, 3, 4)
is.dict(x)
#FALSE

yhat/structr documentation built on May 4, 2019, 2:33 p.m.