class documentation

class MutableChain(Iterable): (source)

View In Hierarchy

Thin wrapper around itertools.chain, allowing to add iterables "in-place"

Method __init__ Undocumented
Method __iter__ Undocumented
Method __next__ Undocumented
Method extend Undocumented
Instance Variable data Undocumented
def __init__(self, *args: Iterable): (source)

Undocumented

def __iter__(self): (source)

Undocumented

def __next__(self): (source)

Undocumented

def extend(self, *iterables: Iterable): (source)

Undocumented

Undocumented