In a way this is a step backwards from my earlier question, but... Can somebody remind me why this doesn't work?
class Container c e where empty :: c insert :: e -> c -> c instance Container [x] x where empty = [] insert = (:) instance Container ByteString Word8 where empty = BIN.empty insert = BIN.cons instance Ord x => Container (Set x) x where empty = SET.empty insert = SET.insert
Obviously if it was that easy, nobody would have bothered to invent functional dependencies nor associated types. So what's the problem with the above?