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: round
Type: (RealFrac a, Integral b) => a -> b
Class: RealFrac
Description: rounds the argument
Related: ceiling, floor, properFraction, truncate
Keywords: nint, round
MATHWORLD Nearest Integer Function

Example 1

Input: round 3

Output: 3

Example 2

Input: round 3.4

Output: 3

Example 3

Input: round 3.6

Output: 4

Example 4

Input: round (-3.6)

Output: -4

Example 5

Input: round (-3.2)

Output: -3