class documentation

class _omd_bucket:

View In Hierarchy

Wraps values in the OrderedMultiDict. This makes it possible to keep an order over multiple different keys. It requires a lot of extra memory and slows down access a lot, but makes it possible to access elements in O(1) and iterate in O(n).
Method __init__ Undocumented
Method unlink Undocumented
Class Variable __slots__ Undocumented
Instance Variable key Undocumented
Instance Variable next Undocumented
Instance Variable prev Undocumented
Instance Variable value Undocumented
def __init__(self, omd, key, value):

Undocumented

def unlink(self, omd):

Undocumented

__slots__: tuple[str, ...] =

Undocumented

key =

Undocumented

next =

Undocumented

prev =

Undocumented

value =

Undocumented