class documentation

class MutableAsyncChain(AsyncIterable): (source)

View In Hierarchy

Similar to MutableChain but for async iterables

Method __aiter__ Undocumented
Async Method __anext__ Undocumented
Method __init__ Undocumented
Method extend Undocumented
Instance Variable data Undocumented
def __aiter__(self): (source)

Undocumented

async def __anext__(self): (source)

Undocumented

def __init__(self, *args: Union[Iterable, AsyncIterable]): (source)

Undocumented

def extend(self, *iterables: Union[Iterable, AsyncIterable]): (source)

Undocumented

Undocumented