Module
Control.Biapply
- Package
- purescript-bifunctors
- Repository
- purescript/purescript-bifunctors
#(<<$>>) Source
Operator alias for Control.Category.id (left-associative / precedence 4)
A convenience operator which can be used to apply the result of bipure in
the style of Applicative:
bipure f g <<$>> x <<*>> y
#biapplyFirst Source
biapplyFirst :: forall d c b a w. Biapply w => w a b -> w c d -> w c dKeep the results of the second computation.
#biapplySecond Source
biapplySecond :: forall d c b a w. Biapply w => w a b -> w c d -> w a bKeep the results of the first computation.