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