ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | >> Ratio << | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: Ratio
Function: denominator
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: (%), numerator

Example 1

Input: denominator (7 % 5)

Output: 5

Example 2

Input: denominator (12 % 4)

Output: 1

Example 3

Input: denominator (3 % (-6))

Output: 2