Returns inner value for successful container.
(self)
| 413 | return Maybe.from_optional(function(self._inner_value)) |
| 414 | |
| 415 | def unwrap(self): |
| 416 | """Returns inner value for successful container.""" |
| 417 | return self._inner_value |
| 418 | |
| 419 | def map(self, function): |
| 420 | """Composes current container with a pure function.""" |
no outgoing calls