Bind型クラス
PureScriptの型クラス
定義
code:purs(hs)
class Apply m <= Bind m where
bind :: forall a b. m a -> (a -> m b) -> m b
Apply型クラスを継承する
bindと(>>=)は同じ
実例によるPureScript 8.4