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: | Ratio |
---|---|
Function: | numerator |
Type: | Integral a => Ratio a -> a |
Description: | The functions numerator and denominator extract the components of a ratio; these are in reduced form with a positive denominator. |
Related: | (%), denominator |
Input: numerator (7 % 5)
Output: 7
Input: numerator (12 % 4)
Output: 3
Input: numerator (3 % (-6))
Output: -1