[Haskell-cafe] Re: Class Instances
Benedikt Huber
benjovi at gmx.net
Fri Feb 13 13:21:38 EST 2009
Cetin Sert schrieb:
> Hi,
>
> class Processor a where
> ready :: (forall b c. a → [b → c])
>
> instance Processor (b → c) where
> ready = repeat
> ...
> -------------------------------
> Why can I not declare the above instances and always get:
Hi Cetin,
in your class declaration you state that a (Processor T) provides a function
> ready :: T -> [b -> c]
so
> ready (t::T)
has type (forall b c. [b -> c]), a list of functions from arbitrary
types b to c.
The error messages tell you that e.g.
> repeat (f :: t1 -> t2)
has type
> (t1->t2) -> [t1->t2]
and not the required type
> (t1->t2) -> [a -> b]
With your declarations,
> head (ready negate) "hi"
has to typecheck, that's probably not what you want.
> Is there a way around this?
Maybe you meant
> class Processor a where
> ready :: a b c -> [b -> c]
> instance Processor (->) where
> ready = repeat
> newtype FunList b c = FunList [b->c]
> instance Processor FunList where
> ready (FunList fl) = fl
I think the newtype FunList is neccessary here.
benedikt
>
> message.hs:229:10:
> Couldn't match expected type `b' against inferred type `b1'
> `b' is a rigid type variable bound by
> the instance declaration at message.hs:228:20
> `b1' is a rigid type variable bound by
> the type signature for `ready' at message.hs:226:19
> Expected type: b -> c
> Inferred type: b1 -> c1
> In the expression: repeat
> In the definition of `ready': ready = repeat
>
> message.hs:229:10:
> Couldn't match expected type `c' against inferred type `c1'
> `c' is a rigid type variable bound by
> the instance declaration at message.hs:228:24
> `c1' is a rigid type variable bound by
> the type signature for `ready' at message.hs:226:21
> Expected type: b -> c
> Inferred type: b1 -> c1
> In the expression: repeat
> In the definition of `ready': ready = repeat
>
> message.hs:232:10:
> Couldn't match expected type `b1' against inferred type `b'
> `b1' is a rigid type variable bound by
> the type signature for `ready' at message.hs:226:19
> `b' is a rigid type variable bound by
> the instance declaration at message.hs:231:20
> Expected type: [b1 -> c]
> Inferred type: [b -> c1]
> In the expression: id
> In the definition of `ready': ready = id
>
> message.hs:232:10:
> Couldn't match expected type `c1' against inferred type `c'
> `c1' is a rigid type variable bound by
> the type signature for `ready' at message.hs:226:21
> `c' is a rigid type variable bound by
> the instance declaration at message.hs:231:24
> Expected type: [b -> c1]
> Inferred type: [b1 -> c]
> In the expression: id
> In the definition of `ready': ready = id
>
> Is there a way around this?
>
> Regards,
> CS
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Haskell-Cafe mailing list
> Haskell-Cafe at haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
More information about the Haskell-Cafe
mailing list