I suppose what I want is impossible without Template Haskell but I'll ask anyway.
I have an interface for types like Data.Set and Data.IntSet:
type family Elem s :: *
class SetLike s where
insert :: Elem s -> s -> s
member :: Elem s -> s -> Bool
...
type instance Elem (Set a) = a
instance Ord a => SetLike (Set a) where
...
And I have a type family which chooses optimal set implementation:
type family EfficientSet elem :: *
type instance EfficientSet Int = IntSet
type instance EfficientSet String = Set String -- or another implementation
Is there a way to guarantee that EfficientSet instances will be always SetLike and that Elem (EfficientSet a) is a ?
Without this guarantee all function signatures will be like this:
type LocationSet = EfficientSet Location
f :: (SetLike LocationSet, Elem LocationSet ~ Location) => ...
To write each time SetLike LocationSet is somewhat tolerable, but Elem LocationSet ~ Location makes code understanding only harder, as for me.