Skip to content

PyoValuesView

Bases: ValuesView[V], PyoMappingView[V]

A view of the values in a pyochain mapping.

This class provides a view over the values contained in a pyochain mapping, with additional methods from the PyoMappingView and PyoCollection traits.

See Also

PyoMapping.values(): Method that returns this view.

Source code in src/pyochain/traits/_iterable.py
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
class PyoValuesView[V](ValuesView[V], PyoMappingView[V]):
    """A view of the values in a pyochain mapping.

    This class provides a view over the values contained in a pyochain mapping, with
    additional methods from the `PyoMappingView` and `PyoCollection` traits.

    See Also:
        `PyoMapping.values()`: Method that returns this view.
    """

    __slots__ = ()