isHomoList: Determines whether a list is homogenous

Description Usage Arguments Value Author(s) Examples

View source: R/misc.R

Description

If a list contains objects of the same class with the given class name, we call it a homogenous list and the function returns TRUE, otherwise it returns FALSE.

Usage

1

Arguments

list

A list

class

The class name to be validated

Value

logical

Author(s)

Jitao David Zhang mailto:jitao_david.zhang@roche.com

Examples

1
2
3
4
5
testlist <- list("home1"="Hamburg","home2"="Heidelberg",
"home3"="Tianjin")
isHomoList(testlist,"character")
testlist$lucky <- 16
isHomoList(testlist,"character")

KEGGgraph documentation built on Nov. 8, 2020, 5:42 p.m.