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

Description Usage Arguments Examples

Description

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

Usage

1
  is.list.py(object)

Arguments

object

any object

Examples

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

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