|
-- | bipure f g <<$>> x <<*>> y |
Is this supposed to say bimap instead of bipure? It doesn't make much sense with bipure, as <<$>> is aliased to identity, and therefore you would be applying the bifunctor directly to x. However, the text specifically refers to bipure, so I'm a bit puzzled about what's going on here.
It could also work as bipure f g <<*>> x <<*>> y, but then it wouldn't make sense as example code for <<$>>.
purescript-bifunctors/src/Control/Biapply.purs
Line 12 in a31d0fc
Is this supposed to say
bimapinstead ofbipure? It doesn't make much sense withbipure, as<<$>>is aliased toidentity, and therefore you would be applying the bifunctor directly tox. However, the text specifically refers tobipure, so I'm a bit puzzled about what's going on here.It could also work as
bipure f g <<*>> x <<*>> y, but then it wouldn't make sense as example code for<<$>>.