Where is Data.Functor.Coproduct. go?

I am trying to use Data.Functor.Coproduct from comonad , but it seems to have disappeared in the latest version.

The changelog mentions that it is deprecated in favor of Data.Functor.Sum , but I don't know where I can find the equivalent coproduct function for Sum :

 coproduct :: (fa -> b) -> (ga -> b) -> Coproduct fga -> b 
+8
haskell packages
source share

No one has answered this question yet.

See related questions:

757
Getting started with Haskell
534
Large-scale design in Haskell?
363
Is GUI programming possible?
319
Restriction Tracking Methods
255
Getting Associated Synonyms with a Haskell Pattern
143
Consequences of foldr vs foldl (or foldl ')
106
Haskell: Where Against Let
thirteen
Theoretically, is this a valid instance of comonad for a list?
6
What are the benefits of creating an instance of Comonad?
5
Are comonads suitable for modeling the Wumpus world?

All Articles