Home | Trees | Indices | Help |
|
---|
|
object --+ | _abcoll.Sized --+ | object --+ | | | _abcoll.Iterable --+ | object --+ | | | _abcoll.Container --+ | _abcoll.Sequence --+ | _abcoll.MutableSequence --+ | _PluralBinding
Helper for element content that supports multiple occurences.
This is an adapter for Python list. Any operation that can mutate an item in the list ensures the stored value is compatible with the element for which the list holds values.
|
|||
Inherited from |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
integer |
|
||
integer |
|
||
|
|||
item |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|
|||
Inherited from |
|
|||
Inherited from |
|
x.__init__(...) initializes x; see help(type(x)) for signature
|
|
|
|
|
|
|
|
append object to the end of the sequence
|
extend sequence by appending elements from the iterable
|
return number of occurrences of value
|
return first index of value. Raises ValueError if the value is not present.
|
insert object before index
|
remove and return item at index (default last). Raise IndexError if list is empty or index is out of range.
|
remove first occurrence of value. Raise ValueError if the value is not present.
|
reverse *IN PLACE*
|
str(x)
|
hash(x)
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sun Sep 18 22:33:49 2016 | http://epydoc.sourceforge.net |