unitizerList {unitizer} | R Documentation |
S4 Object To Implement Base List Methods
Description
Internal unitizer
objects used to manage lists of objects. The only
user facing instance of these objects are conditionList
objects. For the most part these objects behave like normal S3 lists. The
list contents are kept in the .items
slot, and the following methods
are implemented to make the object mostly behave like a standard R list:
[
, [[
, [<-
, [[<-
, as.list
, append
,
length
, names
, and names<-
.
Details
The underlying assumption is that the '.items' slot is a list (or an expression), and that slot is the only slot for which it's order and length are meaningful (i.e. there is no other list or vector of same length as '.items' in a different slot that is supposed to map to '.items'). This last assumption allows us to implement the subsetting operators in a meaningful manner.
The validity method will run validObject
on the first, last, and
middle items (if an even number of items, then the middle closer to the
first) assuming they are S4 objects. We don't run on every object to avoid
potentially expensive computation on all objects.
Slots
.items
a list or expression
.pointer
integer, used for implementing iterators
.seek.fwd
logical used to track what direction iterators are going
See Also
Examples
new('unitizerList', .items=list(1, 2, 3))