Source code for haskpy.typeclasses.bind_
"""Bind typeclass
.. autosummary::
:toctree:
Bind
.. autosummary::
:toctree:
bind
join
"""
from haskpy.types.function import function
# To avoid circular dependency, the class is defined in a hidden module. But
# import it as if it was defined in this module in order to fix references in
# Sphinx documentation.
from ._bind import Bind
Bind.__module__ = __name__