Created
September 10, 2022 13:20
-
-
Save Sinha-Ujjawal/e3ea314e5756a8ccbfea35751e92995f to your computer and use it in GitHub Desktop.
BiFunctor in Haskell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Bifunctor f where | |
bimap :: (a -> a') -> (b -> b') -> f a b -> f a' b' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment