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: | 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: |
Input: divMod 3 5
Output: (0,3)
Input: divMod 13 (-5)
Output: (-3,-2)
Input: divMod (-13) 5
Output: (-3,2)