BBmisc (version 1.13)

checkListElementClass: Check that a list contains only elements of a required type.

Description

Check that argument is a list and contains only elements of a required type. Throws exception if check is not passed. Note that argument is evaluated when checked.

Usage

checkListElementClass(xs, cl)

Value

Nothing.

Arguments

xs

[list]
Argument.

cl

[character(1)]
Class that elements must have. Checked with is.

Examples

Run this code
xs = as.list(1:3)
checkListElementClass(xs, "numeric")

Run the code above in your browser using DataLab