Jugando con las clases de tipo I ocurrió la aparentemente inocenteinstancia clase de tipos de dependencias funcionales no funciona
class Pair p a | p -> a where
one :: p -> a
two :: p -> a
Esto parece funcionar bien, por ejemplo,
instance Pair [a] a where
one [x,_] = x
two [_,y] = y
Sin embargo, me encontré en problemas para las tuplas. A pesar de que la siguiente definición compila ...
instance Pair (a,a) a where
one p = fst p
two p = snd p
... no puedo utilizarlo como yo esperaba:
main = print $ two (3, 4)
No instance for (Pair (t, t1) a)
arising from a use of `two' at src\Main.hs:593:15-23
Possible fix: add an instance declaration for (Pair (t, t1) a)
In the second argument of `($)', namely `two (3, 4)'
In the expression: print $ two (3, 4)
In the definition of `main': main = print $ two (3, 4)
¿Hay una manera de definir la instancia correcta? ¿O tengo que recurrir a un contenedor newtype
?
¡Gracias, muy interesante! – Landei