Multi-parameter type class

From HaskellWiki
Revision as of 17:23, 28 August 2007 by BrettGiles (talk | contribs) (→‎About: minor wibble)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


About

Basically, type classes which can take multiple arguments, such as:

class Foo a b

Without functional dependencies or associated types, these multi-parameter type classes may cause too much ambiguity to pass the type-checker.

Also see

The Haskell' page