Composes this container with a function returning ``IOResult``.
(self, function)
| 864 | if not TYPE_CHECKING: # noqa: WPS604 # pragma: no branch |
| 865 | |
| 866 | def bind(self, function): |
| 867 | """Composes this container with a function returning ``IOResult``.""" # noqa: E501 |
| 868 | return function(self._inner_value.unwrap()) |
| 869 | |
| 870 | #: Alias for `bind_ioresult` method. Part of the `IOResultBasedN` interface. # noqa: E501 |
| 871 | bind_ioresult = bind |