Learn R Programming

KEGGgraph (version 1.30.0)

isHomoList: Determines whether a list is homogenous

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

isHomoList(list, class)

Arguments

list
A list
class
The class name to be validated

Value

logical

Examples

Run this code
testlist <- list("home1"="Hamburg","home2"="Heidelberg",
"home3"="Tianjin")
isHomoList(testlist,"character")
testlist$lucky <- 16
isHomoList(testlist,"character")

Run the code above in your browser using DataLab