generated at
Apply型クラス
f 関数 f 値 に作用する
例えば Just (* 3) のような感じ
Functor型クラスを継承する




定義
purs(hs)
class Functor f <= Apply f where apply :: forall a b. f (a -> b) -> f a -> f b
apply , ap , <*>




fp-ts ref