ZVON > References > Haskell reference |
Intro / Search / ZVON |
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random |
Module: | Prelude |
---|---|
Function: | recip |
Type: | Fractional a => a -> a |
Class: | Fractional |
Description: | returns 1 / argument |
Related: | (/), div, quot, quotRem, rem |
Input: recip 0.1
Output: 10.0
Input: recip 4
Output: 0.25