Learn R Programming

splusTimeDate (version 2.5.0-137)

groupVecNonVec: groupVec Extended Class Validation

Description

Checks whether all slots of an object are either not vectors or have length

Usage

groupVecNonVec(object, exceptSlots)

Arguments

object
the object whose slots are to be checked.
exceptSlots
if present, do not check these slots.

Value

returns TRUE if the slots in the object are atomic or are not vector objects (excluding the slots in exceptSlots); otherwise, returns a descriptive string.

Details

The function loops through all the slots of the object, and for each one checks to see that the data in it is either not a vector class, or if it is a vector class, that it has length

See Also

groupVecExtValid.

Examples

Run this code
setClass("myclass", representation("groupVec", a = "numeric")) 
obj <- new("myclass") 
groupVecNonVec(obj) 
obj@a <- 1:5 
groupVecNonVec(obj) 
groupVecNonVec(obj, "a") 

Run the code above in your browser using DataLab