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

Module: Prelude
Function: divMod
Type: Integral a => a -> a -> (a,a)
Class: Integral
Description: the function returns a tuple containing the result of integral division and modulo
Related:

Example 1

Input: divMod 3 5

Output: (0,3)

Example 2

Input: divMod 13 (-5)

Output: (-3,-2)

Example 3

Input: divMod (-13) 5

Output: (-3,2)