Source code for returns.primitives.container

from abc import ABCMeta
from typing import Any, TypeVar

from returns.interfaces.equable import Equable
from returns.primitives.hkt import Kind1
from returns.primitives.types import Immutable

_EqualType = TypeVar('_EqualType', bound=Equable)


[docs]class BaseContainer(Immutable, metaclass=ABCMeta): """Utility class to provide all needed magic methods to the context.""" __slots__ = ('_inner_value',) _inner_value: Any
[docs] def __init__(self, inner_value) -> None: """ Wraps the given value in the Container. 'value' is any arbitrary value of any type including functions. """ object.__setattr__(self, '_inner_value', inner_value) # noqa: WPS609
[docs] def __repr__(self) -> str: """Used to display details of object.""" return '<{0}: {1}>'.format( self.__class__.__qualname__.strip('_'), str(self._inner_value), )
[docs] def __eq__(self, other: Any) -> bool: """Used to compare two 'Container' objects.""" return container_equality(self, other) # type: ignore
[docs] def __hash__(self) -> int: """Used to use this value as a key.""" return hash(self._inner_value)
[docs] def __getstate__(self) -> Any: """That's how this object will be pickled.""" return self._inner_value
[docs] def __setstate__(self, state: Any) -> None: """Loading state from pickled data.""" object.__setattr__(self, '_inner_value', state) # noqa: WPS609
[docs]def container_equality( self: Kind1[_EqualType, Any], other: Kind1[_EqualType, Any], ) -> bool: """ Function to compare similar containers. Compares both their types and their inner values. """ if type(self) != type(other): # noqa: WPS516 return False return bool( self._inner_value == other._inner_value, # type: ignore # noqa: WPS437 )