Skip to content

PyoMappingView

Bases: MappingView, PyoCollection[T]

Base trait for eager pyochain mapping view collections.

PyoMappingView[T] is the shared trait for concrete mapping views returned by mapping operations.

This trait extends both MappingView from collections.abc and PyoCollection[T].

Source code in src/pyochain/traits/_iterable.py
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
class PyoMappingView[T](MappingView, PyoCollection[T]):
    """Base trait for eager pyochain mapping view collections.

    `PyoMappingView[T]` is the shared trait for concrete mapping views
    returned by mapping operations.

    This trait extends both `MappingView` from `collections.abc` and `PyoCollection[T]`.
    """

    __slots__ = ()