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 |
---|---|
Operator: | (<) |
Type: | Ord a => a -> a -> Bool |
Class: | Ord |
Priority: | 4 |
Description: | "less than" operator |
Related: | (<=), (>), (>=), compare, max, maximum, min, minimum |
Keywords: | order |
Input: 2 < 4
Output: True
Input: 4 < 2
Output: False
Input: 4 < 4
Output: False