Binds ``IO`` returning function to current container.
(self, function)
| 875 | return self.from_result(function(self._inner_value.unwrap())) |
| 876 | |
| 877 | def bind_io(self, function): |
| 878 | """Binds ``IO`` returning function to current container.""" |
| 879 | return self.from_io(function(self._inner_value.unwrap())) |
| 880 | |
| 881 | def lash(self, function): |
| 882 | """Does nothing for ``IOSuccess``.""" |