, ... by @themel. length(x@name) == 0 , , People, Person, R, ... , .
setClass("People",
representation=representation(
firstNames="character",
ages="numeric"),
validity=function(object) {
if (length(object@firstNames) != length(object@ages))
"'firstNames' and 'ages' must have same length"
else TRUE
})
People = function(firstNames=character(), ages=numeric(), ...)
new("People", firstNames=firstNames, ages=ages, ...)
People(c("Me", "Myself", "I"), ages=c(NA_real_, 42, 12))