Suppose I have Heap a type where Heap is type constructor of kind * -> *. Many basic operations on heap require the a type to be an instance of Ord type class.
data Heap a = ...
findMin :: Ord a => Heap a -> a
deleteMin :: Ord a => Heap a -> Heap a
I want to declare my Heap type as an instance of Foldable type class as soon as a type parameter is an instance of Ord type class (it will be easy to express via findMin and deleteMin functions).
This kind of relation can be easely expressed when we dealing with type classes that require type of kind *, like Show:
instance Show a => Show (Heap a) where
show h = ...
But I have problems with declaration of Foldable:
instance Foldable Heap where
-- Ouch, there is no `a` type parameter to put the constraint on!
foldr f z h = ...
Is it possible to put constraint on a type parameter in such instance declaration?
ConstraintKindis really interesting stuff! – roman-kashitsyn Sep 19 '12 at 15:53findMinreally require anOrdinstance? – yairchu Sep 19 '12 at 21:40Ordconstraint onfindMin, but some of them (like the SkewBinominalHeap described by Okasaki) require that constraint. I suppose in real lifeHeapshould be a type class with theOrdconstraint onfindMin. – roman-kashitsyn Sep 19 '12 at 22:07