class documentation

class PendingCollection: (source)

View In Hierarchy

A writable placeholder for an unloaded collection. Stores items appended to and removed from a collection that has not yet been loaded. When the collection is loaded, the changes stored in PendingCollection are applied to it to produce the final result.

Method __init__ Undocumented
Method append Undocumented
Method remove Undocumented
Class Variable __slots__ Undocumented
Instance Variable added_items Undocumented
Instance Variable deleted_items Undocumented
def __init__(self): (source)

Undocumented

def append(self, value: Any): (source)

Undocumented

def remove(self, value: Any): (source)

Undocumented

__slots__: tuple[str, ...] = (source)

Undocumented

added_items = (source)

Undocumented

deleted_items = (source)

Undocumented