Tools
btkTools
pythonTools
- class pyCGM2.Tools.pythonTools.ordict(*args, **kwargs)
ordered dictionary
- clear()
clear the dictionary
- copy()
copy dict
- items()
return items (key,value)
- iteritems()
iterator returning tuples (key, value)
- iterkeys()
iterator returning key
- itervalues()
iterator returning value
- keys()
get keys
- pop(key, value=None)
remove a key and return its value
- popitem()
remove a key an return the key an its value
- setdefault(key, value=None)
set a default item
- update(*args, **kwargs)
update the dictionary
- values()
return values