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?
