Haskell for Imperative Programmers #13 - Typeclasses

preview_player
Показать описание
In this video we explore typeclasses and how to instanciate them.
Рекомендации по теме
Комментарии
Автор

Thank you very much! Your Haskell tutorials are very helpful.

dharyllprinceabellana
Автор

Grüße aus Deutschland! Thanks for the awesome series, started learning haskell because of the lockdown and your videos really help me!

marc
Автор

Omg, your videos are helpfull for the first time I'm able to understand Haskell

varshithreddy
Автор

So type classes are just a convenience not to hammer all the algebraic functions into your keyboard?

Yetipfote
Автор

Great videos keep it up :) May i ask u a question about haskell?
How can I implement this class:
class (Eq a) => Compare a where
(<|), (<=|), (|>=), (|>) :: a->a->Bool
min :: a -> a-> a
By just defining one of the 4 operators (and min).?

markuswetterich