List of partial functions: Difference between revisions

From HaskellWiki
(→‎Partial functions in other base libraries: fromJust is in Data.Maybe but not Prelude)
Line 51: Line 51:


* (!)
* (!)
===Data.Maybe===
* fromJust


==Partial functions in other Haskell Platform packages==
==Partial functions in other Haskell Platform packages==


... (todo)
... (todo)

Revision as of 11:53, 12 October 2012

Partial functions in Prelude

List functions

  • maximum
  • minimum
  • head
  • tail
  • init
  • last
  • foldl
  • foldl'
  • foldl1
  • foldl1'
  • foldr1
  • scanl1
  • scanr1
  • cycle
  • !!
  • genericIndex
  • genericLength
  • length
  • sum
  • product
  • reverse
  • ... (todo)

Maybe functions

  • fromJust

Other

  • read
  • quot
  • rem
  • quotRem
  • div
  • mod
  • divMod
  • succ
  • pred
  • toEnum
  • (^)
  • fail
  • ... (todo)

Partial functions in other base libraries

Data.Map

  • (!)

Data.Maybe

  • fromJust

Partial functions in other Haskell Platform packages

... (todo)