|
|
|
|
|
|
|
|
|
set
|
load(self,
key)
Returns the value associated with the key as a set of one
element. |
source code
|
|
set
|
iload(self,
key)
Yields the value associated with the key as a set of one
element. |
source code
|
|
set
|
iterindex(self,
func)
Iterates through the keys of the container and apply for each one
the provided func with the key and the data
associated. |
source code
|
|
set
|
iiterindex(self,
func)
Iterates through the keys of the container and yields each result
of applying the provided func with the key and the data
associated. |
source code
|
|
|
list
|
keys(self)
Return all the existing keys in the container as a list. |
source code
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|