Supplemental types.
Cell0
A Sequence implementation always containing a single element.
CellEngineering
The purpose of this type is to provide a means to allow receivers of a sequence to know that the sequence produced in a particular case will never contain more than one element without having to explicitly communicate such a fact with another value sent alongside the sequence.
While an explicit plural field is clear and desirable, it also carries the burden of having to be propagated with the sequence. Having the sequence type designate the constraint allows the information to be propagated without concern by the nodes along the call graph.
Cell__slots__
__slots__ = ('element',)
@classmethod
Cell__setup__0
__setup__(Class)
Cellcoalesce0
coalesce(self, default)
Cell__init__0
__init__(self, element)
Cell__getitem__175%object
__getitem__(self, index)
Cell__iter__0
__iter__(self)
Cell__reversed__0
__reversed__(self)
Cell__len__0int
__len__(self)
Cell__eq__0bool
__eq__(self, operand)
Cell__contains__0bool
__contains__(self, item)
Cellindex0int
index(self, value)
Cellcount0int
count(self, value)
Cellsort20%
sort(self)
Sort the Cell's elements by doing nothing.