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


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