| FLlst {FLCore} | R Documentation |
FLlst is a class that extends list but implements a set of features that give a little bit more structure to list objects. First the elements of FLlst must all be of the same class. Second it implements a lock mechanism that, when turned on, does not allow the user to increase or decrease the object length. Both features are needed to propoerly implement FLFleet class.
list.character.character.logical. signature(x=FLlst,i=ANY,j=missing,drop=missing) signature(x=FLlst,i=ANY,j=missing,value=ANY) signature(x=FLlst,i=ANY,j=missing,value=missing) signature(x=FLlst,name=character,value=missing) signature(from=FLlst,to=list,strict=missing) lapply implemented for FLlst objects. signature(X=missing,FUN=missing) signature(x=missing) The FLR Team
[, [<-, [[<-, coerce, lapply, window, list
fll01 <- new("FLlst", list(a=1:10, b=10:20))
fll02 <- new("FLlst", list(1:10, 10:20), names=c("a","b"))
fll03 <- FLlst(a=1:10, b=10:20)
fll04 <- FLlst(list(a=1:10, b=10:20))
fll05 <- FLlst(c(1:10), c(10:20))
names(fll05) <- names(fll01)
names(fll01)