Personal tools

Partial signatures

From HaskellWiki

(Difference between revisions)
Jump to: navigation, search
(Partial class constraint signatures)
Current revision (00:20, 30 December 2010) (edit) (undo)
(link to type signature)
 
Line 1: Line 1:
-
"The regular (full) signature of a function specifies the type of the
+
"The regular (full) [[type signature|signature]] of a function specifies the type of the
function and -- if the type includes constrained type variables --
function and -- if the type includes constrained type variables --
enumerates all of the typeclass constraints. The list of the constraints
enumerates all of the typeclass constraints. The list of the constraints

Current revision

"The regular (full) signature of a function specifies the type of the function and -- if the type includes constrained type variables -- enumerates all of the typeclass constraints. The list of the constraints may be quite large. Partial signatures help when:

  • we wish to add an extra constraint to the type of the function but we do not wish to explicitly write the type of the function and enumerate all of the typeclass constraints,
  • we wish to specify the type of the function and perhaps some of the constraints -- and let the typechecker figure out the rest of them.

Contrary to a popular belief, both of the above are easily possible, in Haskell98."

Partial signatures