How can I have multiple class constraints, so if A
is an Eq
and B
is a Num
, I could say either
f :: Eq a => a -> b`
or
f :: Num b => a -> b
So, how can I have Eq a =>
and Num b =>
at the same time?
f :: Eq a => Num b => a -> b
,f :: Eq a -> Num b => a -> b
, andf :: Eq a, Num b => a -> b
didn't do what I wanted.