Module

Halogen.Query.ForkF

#ForkF

data ForkF f x a

Constructors

#fork

fork :: forall f x. f x -> Fork f (Error -> Aff Unit)

#Fork

data Fork (f :: Type -> Type) a

Instances

#mkFork

mkFork :: forall f x a. ForkF f x a -> Fork f a

#unFork

unFork :: forall f a r. (forall x. ForkF f x a -> r) -> Fork f a -> r

#hoistFork

hoistFork :: forall f g a. (f ~> g) -> Fork f a -> Fork g a

Modules