List of partial functions
From HaskellWiki
(Difference between revisions)
(→Partial functions in other base libraries) |
(→Other: Integral division) |
||
| Line 20: | Line 20: | ||
* read | * read | ||
| + | * quot | ||
| + | * rem | ||
| + | * quotRem | ||
| + | * div | ||
| + | * mod | ||
| + | * divMod | ||
* ... (todo) | * ... (todo) | ||
Revision as of 22:37, 11 October 2012
Contents |
1 Partial functions in Prelude
1.1 List functions
- maximum
- minimum
- head
- tail
- init
- last
- foldl1
- foldl1'
- foldr1
- cycle
- !!
- genericIndex
- ... (todo)
1.2 Other
- read
- quot
- rem
- quotRem
- div
- mod
- divMod
- ... (todo)
2 Partial functions in other base libraries
... (todo)
2.1 Data.Maybe
- fromJust
3 Partial functions in other Haskell Platform packages
... (todo)
