Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
class (Eq e, GenExpr e, MonadRandom m) => GenProg m e | e -> m where

Excactly, I can't understand this GenProg m e | e -> m

I guess GenProg is a constructor.

does that means: the one whose pattern matched GenProg m e or e -> m, whose instance can be defined ?

by the way, where can i get all syntax in haskell?

share|improve this question

2 Answers

up vote 7 down vote accepted

It's a multiparameter type class with a functional dependency. GenProg is the name of the class, the two parameters are m (which has to be an instance of MonadRandom) and e (which has to be an instance of Eq and GenExpr). Then the | separates the instance head from the functional dependency e -> m, which says that the type e in an instance determines the type constructor m, in other words, for any type e there can be at most one m such that an

instance GenProg m e where ...

appears in a valid programme. (I.e., if there is more than one such instance declaration with the same e, there will be a compilation error.)

share|improve this answer
So it's m e or e -> m. Not GenProg m e or e -> m. thanks – snowcake and icejelly Dec 12 '11 at 17:35
3  
@user20100 no, it's not an "or" at all. The | is just a separator, part of a syntax for [haskell.org/haskellwiki/Functional_dependency]. – Will Ness Dec 13 '11 at 8:51

Keywords. Language spec.

Sadly, there is no user-friendly browseable Haskell help system worthy of a name, not that I'm aware of (will be glad to get corrected on that). It's like a big governmental secret, all compartmentalized and distributed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.