| Copyright | (c) The University of Glasgow 2001 |
|---|---|
| License | BSD-style (see the file libraries/base/LICENSE) |
| Maintainer | libraries@haskell.org |
| Stability | stable |
| Portability | portable |
| Safe Haskell | Trustworthy |
| Language | Haskell2010 |
Prelude
Contents
Description
The Prelude: a standard module. The Prelude is imported by default into all Haskell modules unless either there is an explicit import statement for it, or the NoImplicitPrelude extension is enabled.
- data Bool :: *
- (&&) :: Bool -> Bool -> Bool
- (||) :: Bool -> Bool -> Bool
- not :: Bool -> Bool
- otherwise :: Bool
- data Maybe a
- maybe :: b -> (a -> b) -> Maybe a -> b
- data Either a b
- either :: (a -> c) -> (b -> c) -> Either a b -> c
- data Ordering :: *
- data Char :: *
- type String = [Char]
- fst :: (a, b) -> a
- snd :: (a, b) -> b
- curry :: ((a, b) -> c) -> a -> b -> c
- uncurry :: (a -> b -> c) -> (a, b) -> c
- class Eq a where
- class Eq a => Ord a where
- class Enum a where
- class Bounded a where
- data Int :: *
- data Integer :: *
- data Float :: *
- data Double :: *
- type Rational = Ratio Integer
- data Word :: *
- class Num a where
- class (Num a, Ord a) => Real a where
- class (Real a, Enum a) => Integral a where
- class Num a => Fractional a where
- class Fractional a => Floating a where
- class (Real a, Fractional a) => RealFrac a where
- class (RealFrac a, Floating a) => RealFloat a where
- subtract :: Num a => a -> a -> a
- even :: Integral a => a -> Bool
- odd :: Integral a => a -> Bool
- gcd :: Integral a => a -> a -> a
- lcm :: Integral a => a -> a -> a
- (^) :: (Num a, Integral b) => a -> b -> a
- (^^) :: (Fractional a, Integral b) => a -> b -> a
- fromIntegral :: (Integral a, Num b) => a -> b
- realToFrac :: (Real a, Fractional b) => a -> b
- class Monoid a where
- class Functor f where
- (<$>) :: Functor f => (a -> b) -> f a -> f b
- class Functor f => Applicative f where
- class Applicative m => Monad m where
- mapM_ :: (Foldable t, Monad m) => (a -> m b) -> t a -> m ()
- sequence_ :: (Foldable t, Monad m) => t (m a) -> m ()
- (=<<) :: Monad m => (a -> m b) -> m a -> m b
- class Foldable t where
- class (Functor t, Foldable t) => Traversable t where
- id :: a -> a
- const :: a -> b -> a
- (.) :: (b -> c) -> (a -> b) -> a -> c
- flip :: (a -> b -> c) -> b -> a -> c
- ($) :: (a -> b) -> a -> b
- until :: (a -> Bool) -> (a -> a) -> a -> a
- asTypeOf :: a -> a -> a
- error :: forall (r :: RuntimeRep). forall (a :: TYPE r). HasCallStack => [Char] -> a
- errorWithoutStackTrace :: forall (r :: RuntimeRep). forall (a :: TYPE r). [Char] -> a
- undefined :: forall (r :: RuntimeRep). forall (a :: TYPE r). HasCallStack => a
- seq :: a -> b -> b
- ($!) :: (a -> b) -> a -> b
- map :: (a -> b) -> [a] -> [b]
- (++) :: [a] -> [a] -> [a]
- filter :: (a -> Bool) -> [a] -> [a]
- head :: [a] -> a
- last :: [a] -> a
- tail :: [a] -> [a]
- init :: [a] -> [a]
- null :: Foldable t => t a -> Bool
- length :: Foldable t => t a -> Int
- (!!) :: [a] -> Int -> a
- reverse :: [a] -> [a]
- and :: Foldable t => t Bool -> Bool
- or :: Foldable t => t Bool -> Bool
- any :: Foldable t => (a -> Bool) -> t a -> Bool
- all :: Foldable t => (a -> Bool) -> t a -> Bool
- concat :: Foldable t => t [a] -> [a]
- concatMap :: Foldable t => (a -> [b]) -> t a -> [b]
- scanl :: (b -> a -> b) -> b -> [a] -> [b]
- scanl1 :: (a -> a -> a) -> [a] -> [a]
- scanr :: (a -> b -> b) -> b -> [a] -> [b]
- scanr1 :: (a -> a -> a) -> [a] -> [a]
- iterate :: (a -> a) -> a -> [a]
- repeat :: a -> [a]
- replicate :: Int -> a -> [a]
- cycle :: [a] -> [a]
- take :: Int -> [a] -> [a]
- drop :: Int -> [a] -> [a]
- splitAt :: Int -> [a] -> ([a], [a])
- takeWhile :: (a -> Bool) -> [a] -> [a]
- dropWhile :: (a -> Bool) -> [a] -> [a]
- span :: (a -> Bool) -> [a] -> ([a], [a])
- break :: (a -> Bool) -> [a] -> ([a], [a])
- notElem :: (Foldable t, Eq a) => a -> t a -> Bool
- lookup :: Eq a => a -> [(a, b)] -> Maybe b
- zip :: [a] -> [b] -> [(a, b)]
- zip3 :: [a] -> [b] -> [c] -> [(a, b, c)]
- zipWith :: (a -> b -> c) -> [a] -> [b] -> [c]
- zipWith3 :: (a -> b -> c -> d) -> [a] -> [b] -> [c] -> [d]
- unzip :: [(a, b)] -> ([a], [b])
- unzip3 :: [(a, b, c)] -> ([a], [b], [c])
- lines :: String -> [String]
- words :: String -> [String]
- unlines :: [String] -> String
- unwords :: [String] -> String
- type ShowS = String -> String
- class Show a where
- shows :: Show a => a -> ShowS
- showChar :: Char -> ShowS
- showString :: String -> ShowS
- showParen :: Bool -> ShowS -> ShowS
- type ReadS a = String -> [(a, String)]
- class Read a where
- reads :: Read a => ReadS a
- readParen :: Bool -> ReadS a -> ReadS a
- read :: Read a => String -> a
- lex :: ReadS String
- data IO a :: * -> *
- putChar :: Char -> IO ()
- putStr :: String -> IO ()
- putStrLn :: String -> IO ()
- print :: Show a => a -> IO ()
- getChar :: IO Char
- getLine :: IO String
- getContents :: IO String
- interact :: (String -> String) -> IO ()
- type FilePath = String
- readFile :: FilePath -> IO String
- writeFile :: FilePath -> String -> IO ()
- appendFile :: FilePath -> String -> IO ()
- readIO :: Read a => String -> IO a
- readLn :: Read a => IO a
- type IOError = IOException
- ioError :: IOError -> IO a
- userError :: String -> IOError
Standard types, classes and related functions
Basic data types
Instances
| Bounded Bool # | Since: 2.1 |
| Enum Bool # | Since: 2.1 |
| Eq Bool | |
| Data Bool # | Since: 4.0.0.0 |
| Ord Bool | |
| Read Bool # | Since: 2.1 |
| Show Bool # | |
| Ix Bool # | Since: 2.1 |
| Generic Bool # | |
| FiniteBits Bool # | Since: 4.7.0.0 |
| Bits Bool # | Interpret Since: 4.7.0.0 |
| Storable Bool # | Since: 2.1 |
| type Rep Bool # | |
| type (==) Bool a b # | |
The Maybe type encapsulates an optional value. A value of type
either contains a value of type Maybe aa (represented as ),
or it is empty (represented as Just aNothing). Using Maybe is a good way to
deal with errors or exceptional cases without resorting to drastic
measures such as error.
The Maybe type is also a monad. It is a simple kind of error
monad, where all errors are represented by Nothing. A richer
error monad can be built using the Either type.
Instances
| Monad Maybe # | Since: 2.1 |
| Functor Maybe # | Since: 2.1 |
| MonadFix Maybe # | Since: 2.1 |
| MonadFail Maybe # | Since: 4.9.0.0 |
| Applicative Maybe # | Since: 2.1 |
| Foldable Maybe # | Since: 2.1 |
| Traversable Maybe # | Since: 2.1 |
| MonadPlus Maybe # | Since: 2.1 |
| Alternative Maybe # | Since: 2.1 |
| MonadZip Maybe # | Since: 4.8.0.0 |
| Show1 Maybe # | Since: 4.9.0.0 |
| Read1 Maybe # | Since: 4.9.0.0 |
| Ord1 Maybe # | Since: 4.9.0.0 |
| Eq1 Maybe # | Since: 4.9.0.0 |
| Eq a => Eq (Maybe a) # | |
| Data a => Data (Maybe a) # | Since: 4.0.0.0 |
| Ord a => Ord (Maybe a) # | |
| Read a => Read (Maybe a) # | Since: 2.1 |
| Show a => Show (Maybe a) # | |
| Generic (Maybe a) # | |
| Semigroup a => Semigroup (Maybe a) # | Since: 4.9.0.0 |
| Monoid a => Monoid (Maybe a) # | Lift a semigroup into Since: 2.1 |
| Generic1 * Maybe # | |
| type Rep (Maybe a) # | |
| type Rep1 * Maybe # | |
| type (==) (Maybe k) a b # | |
maybe :: b -> (a -> b) -> Maybe a -> b #
The maybe function takes a default value, a function, and a Maybe
value. If the Maybe value is Nothing, the function returns the
default value. Otherwise, it applies the function to the value inside
the Just and returns the result.
Examples
Basic usage:
>>>maybe False odd (Just 3)True
>>>maybe False odd NothingFalse
Read an integer from a string using readMaybe. If we succeed,
return twice the integer; that is, apply (*2) to it. If instead
we fail to parse an integer, return 0 by default:
>>>import Text.Read ( readMaybe )>>>maybe 0 (*2) (readMaybe "5")10>>>maybe 0 (*2) (readMaybe "")0
Apply show to a Maybe Int. If we have Just n, we want to show
the underlying Int n. But if we have Nothing, we return the
empty string instead of (for example) "Nothing":
>>>maybe "" show (Just 5)"5">>>maybe "" show Nothing""
The Either type represents values with two possibilities: a value of
type is either Either a b or Left a.Right b
The Either type is sometimes used to represent a value which is
either correct or an error; by convention, the Left constructor is
used to hold an error value and the Right constructor is used to
hold a correct value (mnemonic: "right" also means "correct").
Examples
The type is the type of values which can be either
a Either String IntString or an Int. The Left constructor can be used only on
Strings, and the Right constructor can be used only on Ints:
>>>let s = Left "foo" :: Either String Int>>>sLeft "foo">>>let n = Right 3 :: Either String Int>>>nRight 3>>>:type ss :: Either String Int>>>:type nn :: Either String Int
The fmap from our Functor instance will ignore Left values, but
will apply the supplied function to values contained in a Right:
>>>let s = Left "foo" :: Either String Int>>>let n = Right 3 :: Either String Int>>>fmap (*2) sLeft "foo">>>fmap (*2) nRight 6
The Monad instance for Either allows us to chain together multiple
actions which may fail, and fail overall if any of the individual
steps failed. First we'll write a function that can either parse an
Int from a Char, or fail.
>>>import Data.Char ( digitToInt, isDigit )>>>:{let parseEither :: Char -> Either String Int parseEither c | isDigit c = Right (digitToInt c) | otherwise = Left "parse error">>>:}
The following should work, since both '1' and '2' can be
parsed as Ints.
>>>:{let parseMultiple :: Either String Int parseMultiple = do x <- parseEither '1' y <- parseEither '2' return (x + y)>>>:}
>>>parseMultipleRight 3
But the following should fail overall, since the first operation where
we attempt to parse 'm' as an Int will fail:
>>>:{let parseMultiple :: Either String Int parseMultiple = do x <- parseEither 'm' y <- parseEither '2' return (x + y)>>>:}
>>>parseMultipleLeft "parse error"
Instances
| Show2 Either # | Since: 4.9.0.0 |
| Read2 Either # | Since: 4.9.0.0 |
| Ord2 Either # | Since: 4.9.0.0 |
| Eq2 Either # | Since: 4.9.0.0 |
| Bifunctor Either # | Since: 4.8.0.0 |
| Bifoldable Either # | Since: 4.10.0.0 |
| Bitraversable Either # | Since: 4.10.0.0 |
| Monad (Either e) # | Since: 4.4.0.0 |
| Functor (Either a) # | Since: 3.0 |
| MonadFix (Either e) # | Since: 4.3.0.0 |
| Applicative (Either e) # | Since: 3.0 |
| Foldable (Either a) # | Since: 4.7.0.0 |
| Traversable (Either a) # | Since: 4.7.0.0 |
| Show a => Show1 (Either a) # | Since: 4.9.0.0 |
| Read a => Read1 (Either a) # | Since: 4.9.0.0 |
| Ord a => Ord1 (Either a) # | Since: 4.9.0.0 |
| Eq a => Eq1 (Either a) # | Since: 4.9.0.0 |
| Generic1 * (Either a) # | |
| (Eq b, Eq a) => Eq (Either a b) # | |
| (Data a, Data b) => Data (Either a b) # | Since: 4.0.0.0 |
| (Ord b, Ord a) => Ord (Either a b) # | |
| (Read b, Read a) => Read (Either a b) # | |
| (Show b, Show a) => Show (Either a b) # | |
| Generic (Either a b) # | |
| Semigroup (Either a b) # | Since: 4.9.0.0 |
| type Rep1 * (Either a) # | |
| type Rep (Either a b) # | |
| type (==) (Either k1 k2) a b # | |
either :: (a -> c) -> (b -> c) -> Either a b -> c #
Case analysis for the Either type.
If the value is , apply the first function to Left aa;
if it is , apply the second function to Right bb.
Examples
We create two values of type , one using the
Either String IntLeft constructor and another using the Right constructor. Then
we apply "either" the length function (if we have a String)
or the "times-two" function (if we have an Int):
>>>let s = Left "foo" :: Either String Int>>>let n = Right 3 :: Either String Int>>>either length (*2) s3>>>either length (*2) n6
Instances
| Bounded Ordering # | Since: 2.1 |
| Enum Ordering # | Since: 2.1 |
| Eq Ordering | |
| Data Ordering # | Since: 4.0.0.0 |
| Ord Ordering | |
| Read Ordering # | Since: 2.1 |
| Show Ordering # | |
| Ix Ordering # | Since: 2.1 |
| Generic Ordering # | |
| Semigroup Ordering # | Since: 4.9.0.0 |
| Monoid Ordering # | Since: 2.1 |
| type Rep Ordering # | |
| type (==) Ordering a b # | |
The character type Char is an enumeration whose values represent
Unicode (or equivalently ISO/IEC 10646) characters (see
http://www.unicode.org/ for details). This set extends the ISO 8859-1
(Latin-1) character set (the first 256 characters), which is itself an extension
of the ASCII character set (the first 128 characters). A character literal in
Haskell has type Char.
To convert a Char to or from the corresponding Int value defined
by Unicode, use toEnum and fromEnum from the
Enum class respectively (or equivalently ord and chr).
Instances
| Bounded Char # | Since: 2.1 |
| Enum Char # | Since: 2.1 |
| Eq Char | |
| Data Char # | Since: 4.0.0.0 |
| Ord Char | |
| Read Char # | Since: 2.1 |
| Show Char # | Since: 2.1 |
| Ix Char # | Since: 2.1 |
| Storable Char # | Since: 2.1 |
| IsChar Char # | Since: 2.1 |
| PrintfArg Char # | Since: 2.1 |
| Generic1 k (URec k Char) # | |
| Functor (URec * Char) # | |
| Foldable (URec * Char) # | |
| Traversable (URec * Char) # | |
| Eq (URec k Char p) # | |
| Ord (URec k Char p) # | |
| Show (URec k Char p) # | |
| Generic (URec k Char p) # | |
| data URec k Char # | Used for marking occurrences of Since: 4.9.0.0 |
| type Rep1 k (URec k Char) # | |
| type Rep (URec k Char p) # | |
Tuples
uncurry :: (a -> b -> c) -> (a, b) -> c #
uncurry converts a curried function to a function on pairs.
Basic type classes
The Eq class defines equality (==) and inequality (/=).
All the basic datatypes exported by the Prelude are instances of Eq,
and Eq may be derived for any datatype whose constituents are also
instances of Eq.
Instances
| Eq Bool | |
| Eq Char | |
| Eq Double | |
| Eq Float | |
| Eq Int | |
| Eq Int8 # | Since: 2.1 |
| Eq Int16 # | Since: 2.1 |
| Eq Int32 # | Since: 2.1 |
| Eq Int64 # | Since: 2.1 |
| Eq Integer | |
| Eq Natural # | |
| Eq Ordering | |
| Eq Word | |
| Eq Word8 # | Since: 2.1 |
| Eq Word16 # | Since: 2.1 |
| Eq Word32 # | Since: 2.1 |
| Eq Word64 # | Since: 2.1 |
| Eq SomeTypeRep # | |
| Eq () | |
| Eq TyCon | |
| Eq Module | |
| Eq TrName | |
| Eq BigNat | |
| Eq SrcLoc # | |
| Eq GeneralCategory # | |
| Eq Number # | |
| Eq Lexeme # | |
| Eq Fingerprint # | |
| Eq IOMode # | |
| Eq IntPtr # | |
| Eq WordPtr # | |
| Eq CUIntMax # | |
| Eq CIntMax # | |
| Eq CUIntPtr # | |
| Eq CIntPtr # | |
| Eq CSUSeconds # | |
| Eq CUSeconds # | |
| Eq CTime # | |
| Eq CClock # | |
| Eq CSigAtomic # | |
| Eq CWchar # | |
| Eq CSize # | |
| Eq CPtrdiff # | |
| Eq CDouble # | |
| Eq CFloat # | |
| Eq CBool # | |
| Eq CULLong # | |
| Eq CLLong # | |
| Eq CULong # | |
| Eq CLong # | |
| Eq CUInt # | |
| Eq CInt # | |
| Eq CUShort # | |
| Eq CShort # | |
| Eq CUChar # | |
| Eq CSChar # | |
| Eq CChar # | |
| Eq SomeNat # | Since: 4.7.0.0 |
| Eq SomeSymbol # | Since: 4.7.0.0 |
| Eq DecidedStrictness # | |
| Eq SourceStrictness # | |
| Eq SourceUnpackedness # | |
| Eq Associativity # | |
| Eq Fixity # | |
| Eq Any # | |
| Eq All # | |
| Eq ArithException # | |
| Eq ErrorCall # | |
| Eq IOException # | Since: 4.1.0.0 |
| Eq MaskingState # | |
| Eq BufferState # | |
| Eq CodingProgress # | |
| Eq SeekMode # | |
| Eq IODeviceType # | |
| Eq NewlineMode # | |
| Eq Newline # | |
| Eq BufferMode # | |
| Eq Handle # | Since: 4.1.0.0 |
| Eq IOErrorType # | Since: 4.1.0.0 |
| Eq ExitCode # | |
| Eq ArrayException # | |
| Eq AsyncException # | |
| Eq Errno # | Since: 2.1 |
| Eq Fd # | |
| Eq CTimer # | |
| Eq CKey # | |
| Eq CId # | |
| Eq CFsFilCnt # | |
| Eq CFsBlkCnt # | |
| Eq CClockId # | |
| Eq CBlkCnt # | |
| Eq CBlkSize # | |
| Eq CRLim # | |
| Eq CTcflag # | |
| Eq CSpeed # | |
| Eq CCc # | |
| Eq CUid # | |
| Eq CNlink # | |
| Eq CGid # | |
| Eq CSsize # | |
| Eq CPid # | |
| Eq COff # | |
| Eq CMode # | |
| Eq CIno # | |
| Eq CDev # | |
| Eq Lifetime # | |
| Eq Event # | |
| Eq ThreadStatus # | |
| Eq BlockReason # | |
| Eq ThreadId # | Since: 4.2.0.0 |
| Eq TimeoutKey # | |
| Eq FdKey # | |
| Eq HandlePosn # | Since: 4.1.0.0 |
| Eq Version # | Since: 2.1 |
| Eq Unique # | |
| Eq Fixity # | |
| Eq ConstrRep # | |
| Eq DataRep # | |
| Eq Constr # | Equality of constructors Since: 4.0.0.0 |
| Eq SpecConstrAnnotation # | |
| Eq Void # | Since: 4.8.0.0 |
| Eq a => Eq [a] | |
| Eq a => Eq (Maybe a) # | |
| Eq a => Eq (Ratio a) # | |
| Eq (StablePtr a) # | Since: 2.1 |
| Eq (Ptr a) # | |
| Eq (FunPtr a) # | |
| Eq p => Eq (Par1 p) # | |
| Eq (MVar a) # | Since: 4.1.0.0 |
| Eq a => Eq (Down a) # | |
| Eq a => Eq (Last a) # | |
| Eq a => Eq (First a) # | |
| Eq a => Eq (Product a) # | |
| Eq a => Eq (Sum a) # | |
| Eq a => Eq (Dual a) # | |
| Eq (IORef a) # | Since: 4.1.0.0 |
| Eq (ForeignPtr a) # | Since: 2.1 |
| Eq (TVar a) # | Since: 4.8.0.0 |
| Eq a => Eq (Identity a) # | |
| Eq a => Eq (ZipList a) # | |
| Eq (StableName a) # | Since: 2.1 |
| Eq (Chan a) # | |
| Eq a => Eq (NonEmpty a) # | |
| Eq a => Eq (Option a) # | |
| Eq m => Eq (WrappedMonoid m) # | |
| Eq a => Eq (Last a) # | |
| Eq a => Eq (First a) # | |
| Eq a => Eq (Max a) # | |
| Eq a => Eq (Min a) # | |
| Eq (Fixed a) # | |
| Eq a => Eq (Complex a) # | |
| (Eq b, Eq a) => Eq (Either a b) # | |
| Eq (V1 k p) # | |
| Eq (U1 k p) # | Since: 4.9.0.0 |
| Eq (TypeRep k a) # | Since: 2.1 |
| (Eq a, Eq b) => Eq (a, b) | |
| Eq (STRef s a) # | Since: 2.1 |
| Eq (Proxy k s) # | Since: 4.7.0.0 |
| Eq a => Eq (Arg a b) # | Since: 4.9.0.0 |
| Eq (f p) => Eq (Rec1 k f p) # | |
| Eq (URec k Word p) # | |
| Eq (URec k Int p) # | |
| Eq (URec k Float p) # | |
| Eq (URec k Double p) # | |
| Eq (URec k Char p) # | |
| Eq (URec k (Ptr ()) p) # | |
| (Eq a, Eq b, Eq c) => Eq (a, b, c) | |
| Eq ((:~:) k a b) # | |
| Eq (Coercion k a b) # | |
| Eq (f a) => Eq (Alt k f a) # | |
| Eq a => Eq (Const k a b) # | |
| Eq c => Eq (K1 k i c p) # | |
| (Eq (g p), Eq (f p)) => Eq ((:+:) k f g p) # | |
| (Eq (g p), Eq (f p)) => Eq ((:*:) k f g p) # | |
| (Eq a, Eq b, Eq c, Eq d) => Eq (a, b, c, d) | |
| Eq ((:~~:) k1 k2 a b) # | Since: 4.10.0.0 |
| (Eq1 f, Eq1 g, Eq a) => Eq (Sum * f g a) # | Since: 4.9.0.0 |
| (Eq1 f, Eq1 g, Eq a) => Eq (Product * f g a) # | Since: 4.9.0.0 |
| Eq (f p) => Eq (M1 k i c f p) # | |
| Eq (f (g p)) => Eq ((:.:) k2 k1 f g p) # | |
| (Eq a, Eq b, Eq c, Eq d, Eq e) => Eq (a, b, c, d, e) | |
| (Eq1 f, Eq1 g, Eq a) => Eq (Compose * * f g a) # | Since: 4.9.0.0 |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f) => Eq (a, b, c, d, e, f) | |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f, Eq g) => Eq (a, b, c, d, e, f, g) | |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f, Eq g, Eq h) => Eq (a, b, c, d, e, f, g, h) | |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f, Eq g, Eq h, Eq i) => Eq (a, b, c, d, e, f, g, h, i) | |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f, Eq g, Eq h, Eq i, Eq j) => Eq (a, b, c, d, e, f, g, h, i, j) | |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f, Eq g, Eq h, Eq i, Eq j, Eq k) => Eq (a, b, c, d, e, f, g, h, i, j, k) | |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f, Eq g, Eq h, Eq i, Eq j, Eq k, Eq l) => Eq (a, b, c, d, e, f, g, h, i, j, k, l) | |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f, Eq g, Eq h, Eq i, Eq j, Eq k, Eq l, Eq m) => Eq (a, b, c, d, e, f, g, h, i, j, k, l, m) | |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f, Eq g, Eq h, Eq i, Eq j, Eq k, Eq l, Eq m, Eq n) => Eq (a, b, c, d, e, f, g, h, i, j, k, l, m, n) | |
| (Eq a, Eq b, Eq c, Eq d, Eq e, Eq f, Eq g, Eq h, Eq i, Eq j, Eq k, Eq l, Eq m, Eq n, Eq o) => Eq (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) | |
class Eq a => Ord a where Source #
The Ord class is used for totally ordered datatypes.
Instances of Ord can be derived for any user-defined
datatype whose constituent types are in Ord. The declared order
of the constructors in the data declaration determines the ordering
in derived Ord instances. The Ordering datatype allows a single
comparison to determine the precise ordering of two objects.
Minimal complete definition: either compare or <=.
Using compare can be more efficient for complex types.
Methods
compare :: a -> a -> Ordering Source #
(<) :: a -> a -> Bool infix 4 Source #
(<=) :: a -> a -> Bool infix 4 Source #
(>) :: a -> a -> Bool infix 4 Source #
Instances
| Ord Bool | |
| Ord Char | |
| Ord Double | |
| Ord Float | |
| Ord Int | |
| Ord Int8 # | Since: 2.1 |
| Ord Int16 # | Since: 2.1 |
| Ord Int32 # | Since: 2.1 |
| Ord Int64 # | Since: 2.1 |
| Ord Integer | |
| Ord Natural # | |
| Ord Ordering | |
| Ord Word | |
| Ord Word8 # | Since: 2.1 |
| Ord Word16 # | Since: 2.1 |
| Ord Word32 # | Since: 2.1 |
| Ord Word64 # | Since: 2.1 |
| Ord SomeTypeRep # | |
| Ord () | |
| Ord TyCon | |
| Ord BigNat | |
| Ord GeneralCategory # | |
| Ord Fingerprint # | |
| Ord IOMode # | |
| Ord IntPtr # | |
| Ord WordPtr # | |
| Ord CUIntMax # | |
| Ord CIntMax # | |
| Ord CUIntPtr # | |
| Ord CIntPtr # | |
| Ord CSUSeconds # | |
| Ord CUSeconds # | |
| Ord CTime # | |
| Ord CClock # | |
| Ord CSigAtomic # | |
| Ord CWchar # | |
| Ord CSize # | |
| Ord CPtrdiff # | |
| Ord CDouble # | |
| Ord CFloat # | |
| Ord CBool # | |
| Ord CULLong # | |
| Ord CLLong # | |
| Ord CULong # | |
| Ord CLong # | |
| Ord CUInt # | |
| Ord CInt # | |
| Ord CUShort # | |
| Ord CShort # | |
| Ord CUChar # | |
| Ord CSChar # | |
| Ord CChar # | |
| Ord SomeNat # | Since: 4.7.0.0 |
| Ord SomeSymbol # | Since: 4.7.0.0 |
| Ord DecidedStrictness # | |
| Ord SourceStrictness # | |
| Ord SourceUnpackedness # | |
| Ord Associativity # | |
| Ord Fixity # | |
| Ord Any # | |
| Ord All # | |
| Ord ArithException # | |
| Ord ErrorCall # | |
| Ord SeekMode # | |
| Ord NewlineMode # | |
| Ord Newline # | |
| Ord BufferMode # | |
| Ord ExitCode # | |
| Ord ArrayException # | |
| Ord AsyncException # | |
| Ord Fd # | |
| Ord CTimer # | |
| Ord CKey # | |
| Ord CId # | |
| Ord CFsFilCnt # | |
| Ord CFsBlkCnt # | |
| Ord CClockId # | |
| Ord CBlkCnt # | |
| Ord CBlkSize # | |
| Ord CRLim # | |
| Ord CTcflag # | |
| Ord CSpeed # | |
| Ord CCc # | |
| Ord CUid # | |
| Ord CNlink # | |
| Ord CGid # | |
| Ord CSsize # | |
| Ord CPid # | |
| Ord COff # | |
| Ord CMode # | |
| Ord CIno # | |
| Ord CDev # | |
| Ord ThreadStatus # | |
| Ord BlockReason # | |
| Ord ThreadId # | Since: 4.2.0.0 |
| Ord Version # | Since: 2.1 |
| Ord Unique # | |
| Ord Void # | Since: 4.8.0.0 |
| Ord a => Ord [a] | |
| Ord a => Ord (Maybe a) # | |
| Integral a => Ord (Ratio a) # | Since: 2.0.1 |
| Ord (Ptr a) # | |
| Ord (FunPtr a) # | |
| Ord p => Ord (Par1 p) # | |
| Ord a => Ord (Down a) # | Since: 4.6.0.0 |
| Ord a => Ord (Last a) # | |
| Ord a => Ord (First a) # | |
| Ord a => Ord (Product a) # | |
| Ord a => Ord (Sum a) # | |
| Ord a => Ord (Dual a) # | |
| Ord (ForeignPtr a) # | Since: 2.1 |
| Ord a => Ord (Identity a) # | |
| Ord a => Ord (ZipList a) # | |
| Ord a => Ord (NonEmpty a) # | |
| Ord a => Ord (Option a) # | |
| Ord m => Ord (WrappedMonoid m) # | |
| Ord a => Ord (Last a) # | |
| Ord a => Ord (First a) # | |
| Ord a => Ord (Max a) # | |
| Ord a => Ord (Min a) # | |
| Ord (Fixed a) # | |
| (Ord b, Ord a) => Ord (Either a b) # | |
| Ord (V1 k p) # | |
| Ord (U1 k p) # | Since: 4.9.0.0 |
| Ord (TypeRep k a) # | Since: 4.4.0.0 |
| (Ord a, Ord b) => Ord (a, b) | |
| Ord (Proxy k s) # | Since: 4.7.0.0 |
| Ord a => Ord (Arg a b) # | Since: 4.9.0.0 |
| Ord (f p) => Ord (Rec1 k f p) # | |
| Ord (URec k Word p) # | |
| Ord (URec k Int p) # | |
| Ord (URec k Float p) # | |
| Ord (URec k Double p) # | |
| Ord (URec k Char p) # | |
| Ord (URec k (Ptr ()) p) # | |
| (Ord a, Ord b, Ord c) => Ord (a, b, c) | |
| Ord ((:~:) k a b) # | |
| Ord (Coercion k a b) # | |
| Ord (f a) => Ord (Alt k f a) # | |
| Ord a => Ord (Const k a b) # | |
| Ord c => Ord (K1 k i c p) # | |
| (Ord (g p), Ord (f p)) => Ord ((:+:) k f g p) # | |
| (Ord (g p), Ord (f p)) => Ord ((:*:) k f g p) # | |
| (Ord a, Ord b, Ord c, Ord d) => Ord (a, b, c, d) | |
| Ord ((:~~:) k1 k2 a b) # | Since: 4.10.0.0 |
| (Ord1 f, Ord1 g, Ord a) => Ord (Sum * f g a) # | Since: 4.9.0.0 |
| (Ord1 f, Ord1 g, Ord a) => Ord (Product * f g a) # | Since: 4.9.0.0 |
| Ord (f p) => Ord (M1 k i c f p) # | |
| Ord (f (g p)) => Ord ((:.:) k2 k1 f g p) # | |
| (Ord a, Ord b, Ord c, Ord d, Ord e) => Ord (a, b, c, d, e) | |
| (Ord1 f, Ord1 g, Ord a) => Ord (Compose * * f g a) # | Since: 4.9.0.0 |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f) => Ord (a, b, c, d, e, f) | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f, Ord g) => Ord (a, b, c, d, e, f, g) | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f, Ord g, Ord h) => Ord (a, b, c, d, e, f, g, h) | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f, Ord g, Ord h, Ord i) => Ord (a, b, c, d, e, f, g, h, i) | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f, Ord g, Ord h, Ord i, Ord j) => Ord (a, b, c, d, e, f, g, h, i, j) | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f, Ord g, Ord h, Ord i, Ord j, Ord k) => Ord (a, b, c, d, e, f, g, h, i, j, k) | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f, Ord g, Ord h, Ord i, Ord j, Ord k, Ord l) => Ord (a, b, c, d, e, f, g, h, i, j, k, l) | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f, Ord g, Ord h, Ord i, Ord j, Ord k, Ord l, Ord m) => Ord (a, b, c, d, e, f, g, h, i, j, k, l, m) | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f, Ord g, Ord h, Ord i, Ord j, Ord k, Ord l, Ord m, Ord n) => Ord (a, b, c, d, e, f, g, h, i, j, k, l, m, n) | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f, Ord g, Ord h, Ord i, Ord j, Ord k, Ord l, Ord m, Ord n, Ord o) => Ord (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) | |
Class Enum defines operations on sequentially ordered types.
The enumFrom... methods are used in Haskell's translation of
arithmetic sequences.
Instances of Enum may be derived for any enumeration type (types
whose constructors have no fields). The nullary constructors are
assumed to be numbered left-to-right by fromEnum from 0 through n-1.
See Chapter 10 of the Haskell Report for more details.
For any type that is an instance of class Bounded as well as Enum,
the following should hold:
- The calls
andsuccmaxBoundshould result in a runtime error.predminBound fromEnumandtoEnumshould give a runtime error if the result value is not representable in the result type. For example,is an error.toEnum7 ::BoolenumFromandenumFromThenshould be defined with an implicit bound, thus:
enumFrom x = enumFromTo x maxBound
enumFromThen x y = enumFromThenTo x y bound
where
bound | fromEnum y >= fromEnum x = maxBound
| otherwise = minBoundMethods
the successor of a value. For numeric types, succ adds 1.
the predecessor of a value. For numeric types, pred subtracts 1.
Convert from an Int.
Convert to an Int.
It is implementation-dependent what fromEnum returns when
applied to a value that is too large to fit in an Int.
Used in Haskell's translation of [n..].
enumFromThen :: a -> a -> [a] #
Used in Haskell's translation of [n,n'..].
enumFromTo :: a -> a -> [a] #
Used in Haskell's translation of [n..m].
enumFromThenTo :: a -> a -> a -> [a] #
Used in Haskell's translation of [n,n'..m].
Instances
The Bounded class is used to name the upper and lower limits of a
type. Ord is not a superclass of Bounded since types that are not
totally ordered may also have upper and lower bounds.
The Bounded class may be derived for any enumeration type;
minBound is the first constructor listed in the data declaration
and maxBound is the last.
Bounded may also be derived for single-constructor datatypes whose
constituent types are in Bounded.
Instances
Numbers
Numeric types
A fixed-precision integer type with at least the range [-2^29 .. 2^29-1].
The exact range for a given implementation can be determined by using
minBound and maxBound from the Bounded class.
Instances
| Bounded Int # | Since: 2.1 |
| Enum Int # | Since: 2.1 |
| Eq Int | |
| Integral Int # | Since: 2.0.1 |
| Data Int # | Since: 4.0.0.0 |
| Num Int # | Since: 2.1 |
| Ord Int | |
| Read Int # | Since: 2.1 |
| Real Int # | Since: 2.0.1 |
| Show Int # | Since: 2.1 |
| Ix Int # | Since: 2.1 |
| FiniteBits Int # | Since: 4.6.0.0 |
| Bits Int # | Since: 2.1 |
| Storable Int # | Since: 2.1 |
| PrintfArg Int # | Since: 2.1 |
| Generic1 k (URec k Int) # | |
| Functor (URec * Int) # | |
| Foldable (URec * Int) # | |
| Traversable (URec * Int) # | |
| Eq (URec k Int p) # | |
| Ord (URec k Int p) # | |
| Show (URec k Int p) # | |
| Generic (URec k Int p) # | |
| data URec k Int # | Used for marking occurrences of Since: 4.9.0.0 |
| type Rep1 k (URec k Int) # | |
| type Rep (URec k Int p) # | |
Single-precision floating point numbers. It is desirable that this type be at least equal in range and precision to the IEEE single-precision type.
Instances
| Eq Float | |
| Floating Float # | Since: 2.1 |
| Data Float # | Since: 4.0.0.0 |
| Ord Float | |
| Read Float # | Since: 2.1 |
| RealFloat Float # | Since: 2.1 |
| Storable Float # | Since: 2.1 |
| PrintfArg Float # | Since: 2.1 |
| Generic1 k (URec k Float) # | |
| Functor (URec * Float) # | |
| Foldable (URec * Float) # | |
| Traversable (URec * Float) # | |
| Eq (URec k Float p) # | |
| Ord (URec k Float p) # | |
| Show (URec k Float p) # | |
| Generic (URec k Float p) # | |
| data URec k Float # | Used for marking occurrences of Since: 4.9.0.0 |
| type Rep1 k (URec k Float) # | |
| type Rep (URec k Float p) # | |
Double-precision floating point numbers. It is desirable that this type be at least equal in range and precision to the IEEE double-precision type.
Instances
| Eq Double | |
| Floating Double # | Since: 2.1 |
| Data Double # | Since: 4.0.0.0 |
| Ord Double | |
| Read Double # | Since: 2.1 |
| RealFloat Double # | Since: 2.1 |
| Storable Double # | Since: 2.1 |
| PrintfArg Double # | Since: 2.1 |
| Generic1 k (URec k Double) # | |
| Functor (URec * Double) # | |
| Foldable (URec * Double) # | |
| Traversable (URec * Double) # | |
| Eq (URec k Double p) # | |
| Ord (URec k Double p) # | |
| Show (URec k Double p) # | |
| Generic (URec k Double p) # | |
| data URec k Double # | Used for marking occurrences of Since: 4.9.0.0 |
| type Rep1 k (URec k Double) # | |
| type Rep (URec k Double p) # | |
Instances
| Bounded Word # | Since: 2.1 |
| Enum Word # | Since: 2.1 |
| Eq Word | |
| Integral Word # | Since: 2.1 |
| Data Word # | Since: 4.0.0.0 |
| Num Word # | Since: 2.1 |
| Ord Word | |
| Read Word # | Since: 4.5.0.0 |
| Real Word # | Since: 2.1 |
| Show Word # | Since: 2.1 |
| Ix Word # | Since: 4.6.0.0 |
| FiniteBits Word # | Since: 4.6.0.0 |
| Bits Word # | Since: 2.1 |
| Storable Word # | Since: 2.1 |
| PrintfArg Word # | Since: 2.1 |
| Generic1 k (URec k Word) # | |
| Functor (URec * Word) # | |
| Foldable (URec * Word) # | |
| Traversable (URec * Word) # | |
| Eq (URec k Word p) # | |
| Ord (URec k Word p) # | |
| Show (URec k Word p) # | |
| Generic (URec k Word p) # | |
| data URec k Word # | Used for marking occurrences of Since: 4.9.0.0 |
| type Rep1 k (URec k Word) # | |
| type Rep (URec k Word p) # | |
Numeric type classes
Basic numeric class.
Methods
(+), (-), (*) :: a -> a -> a infixl 7 *infixl 6 +, - #
Unary negation.
Absolute value.
Sign of a number.
The functions abs and signum should satisfy the law:
abs x * signum x == x
For real numbers, the signum is either -1 (negative), 0 (zero)
or 1 (positive).
fromInteger :: Integer -> a #
Conversion from an Integer.
An integer literal represents the application of the function
fromInteger to the appropriate value of type Integer,
so such literals have type (.Num a) => a
Instances
class (Num a, Ord a) => Real a where #
Minimal complete definition
Methods
toRational :: a -> Rational #
the rational equivalent of its real argument with full precision
Instances
class (Real a, Enum a) => Integral a where #
Integral numbers, supporting integer division.
Methods
quot :: a -> a -> a infixl 7 #
integer division truncated toward zero
integer remainder, satisfying
(x `quot` y)*y + (x `rem` y) == x
integer division truncated toward negative infinity
integer modulus, satisfying
(x `div` y)*y + (x `mod` y) == x
conversion to Integer
Instances
class Num a => Fractional a where #
Fractional numbers, supporting real division.
Minimal complete definition
fromRational, (recip | (/))
Methods
fractional division
reciprocal fraction
fromRational :: Rational -> a #
Conversion from a Rational (that is ).
A floating literal stands for an application of Ratio IntegerfromRational
to a value of type Rational, so such literals have type
(.Fractional a) => a
Instances
| Fractional CDouble # | |
| Fractional CFloat # | |
| Integral a => Fractional (Ratio a) # | Since: 2.0.1 |
| Fractional a => Fractional (Identity a) # | |
| HasResolution a => Fractional (Fixed a) # | Since: 2.1 |
| RealFloat a => Fractional (Complex a) # | Since: 2.1 |
| Fractional a => Fractional (Const k a b) # | |
class Fractional a => Floating a where #
Trigonometric and hyperbolic functions and related functions.
Minimal complete definition
pi, exp, log, sin, cos, asin, acos, atan, sinh, cosh, asinh, acosh, atanh
class (Real a, Fractional a) => RealFrac a where #
Extracting components of fractions.
Minimal complete definition
Methods
properFraction :: Integral b => a -> (b, a) #
The function properFraction takes a real fractional number x
and returns a pair (n,f) such that x = n+f, and:
nis an integral number with the same sign asx; andfis a fraction with the same type and sign asx, and with absolute value less than1.
The default definitions of the ceiling, floor, truncate
and round functions are in terms of properFraction.
truncate :: Integral b => a -> b #
returns the integer nearest truncate xx between zero and x
round :: Integral b => a -> b #
returns the nearest integer to round xx;
the even integer if x is equidistant between two integers
ceiling :: Integral b => a -> b #
returns the least integer not less than ceiling xx
floor :: Integral b => a -> b #
returns the greatest integer not greater than floor xx
class (RealFrac a, Floating a) => RealFloat a where #
Efficient, machine-independent access to the components of a floating-point number.
Minimal complete definition
floatRadix, floatDigits, floatRange, decodeFloat, encodeFloat, isNaN, isInfinite, isDenormalized, isNegativeZero, isIEEE
Methods
floatRadix :: a -> Integer #
a constant function, returning the radix of the representation
(often 2)
floatDigits :: a -> Int #
a constant function, returning the number of digits of
floatRadix in the significand
floatRange :: a -> (Int, Int) #
a constant function, returning the lowest and highest values the exponent may assume
decodeFloat :: a -> (Integer, Int) #
The function decodeFloat applied to a real floating-point
number returns the significand expressed as an Integer and an
appropriately scaled exponent (an Int). If
yields decodeFloat x(m,n), then x is equal in value to m*b^^n, where b
is the floating-point radix, and furthermore, either m and n
are both zero or else b^(d-1) <= , where abs m < b^dd is
the value of .
In particular, floatDigits x. If the type
contains a negative zero, also decodeFloat 0 = (0,0).
The result of decodeFloat (-0.0) = (0,0) is unspecified if either of
decodeFloat x or isNaN x is isInfinite xTrue.
encodeFloat :: Integer -> Int -> a #
encodeFloat performs the inverse of decodeFloat in the
sense that for finite x with the exception of -0.0,
.
uncurry encodeFloat (decodeFloat x) = x is one of the two closest representable
floating-point numbers to encodeFloat m nm*b^^n (or ±Infinity if overflow
occurs); usually the closer, but if m contains too many bits,
the result may be rounded in the wrong direction.
exponent corresponds to the second component of decodeFloat.
and for finite nonzero exponent 0 = 0x,
.
If exponent x = snd (decodeFloat x) + floatDigits xx is a finite floating-point number, it is equal in value to
, where significand x * b ^^ exponent xb is the
floating-point radix.
The behaviour is unspecified on infinite or NaN values.
significand :: a -> a #
The first component of decodeFloat, scaled to lie in the open
interval (-1,1), either 0.0 or of absolute value >= 1/b,
where b is the floating-point radix.
The behaviour is unspecified on infinite or NaN values.
scaleFloat :: Int -> a -> a #
multiplies a floating-point number by an integer power of the radix
True if the argument is an IEEE "not-a-number" (NaN) value
isInfinite :: a -> Bool #
True if the argument is an IEEE infinity or negative infinity
isDenormalized :: a -> Bool #
True if the argument is too small to be represented in
normalized format
isNegativeZero :: a -> Bool #
True if the argument is an IEEE negative zero
True if the argument is an IEEE floating point number
a version of arctangent taking two real floating-point arguments.
For real floating x and y, computes the angle
(from the positive x-axis) of the vector from the origin to the
point atan2 y x(x,y). returns a value in the range [atan2 y x-pi,
pi]. It follows the Common Lisp semantics for the origin when
signed zeroes are supported. , with atan2 y 1y in a type
that is RealFloat, should return the same value as .
A default definition of atan yatan2 is provided, but implementors
can provide a more accurate implementation.
Numeric functions
gcd :: Integral a => a -> a -> a #
is the non-negative factor of both gcd x yx and y of which
every common factor of x and y is also a factor; for example
, gcd 4 2 = 2, gcd (-4) 6 = 2 = gcd 0 44. = gcd 0 00.
(That is, the common divisor that is "greatest" in the divisibility
preordering.)
Note: Since for signed fixed-width integer types, ,
the result may be negative if one of the arguments is abs minBound < 0 (and
necessarily is if the other is minBound0 or ) for such types.minBound
lcm :: Integral a => a -> a -> a #
is the smallest positive integer that both lcm x yx and y divide.
(^^) :: (Fractional a, Integral b) => a -> b -> a infixr 8 #
raise a number to an integral power
fromIntegral :: (Integral a, Num b) => a -> b #
general coercion from integral types
realToFrac :: (Real a, Fractional b) => a -> b #
general coercion to fractional types
Monoids
The class of monoids (types with an associative binary operation that has an identity). Instances should satisfy the following laws:
mappend mempty x = x
mappend x mempty = x
mappend x (mappend y z) = mappend (mappend x y) z
mconcat =
foldrmappend mempty
The method names refer to the monoid of lists under concatenation, but there are many other instances.
Some types can be viewed as a monoid in more than one way,
e.g. both addition and multiplication on numbers.
In such cases we often define newtypes and make those instances
of Monoid, e.g. Sum and Product.
Methods
Identity of mappend
An associative operation
Fold a list using the monoid.
For most types, the default definition for mconcat will be
used, but the function is included in the class definition so
that an optimized version can be provided for specific types.
Instances
| Monoid Ordering # | Since: 2.1 |
| Monoid () # | Since: 2.1 |
| Monoid Any # | Since: 2.1 |
| Monoid All # | Since: 2.1 |
| Monoid Lifetime # |
Since: 4.8.0.0 |
| Monoid Event # | Since: 4.3.1.0 |
| Monoid [a] # | Since: 2.1 |
| Monoid a => Monoid (Maybe a) # | Lift a semigroup into Since: 2.1 |
| Monoid a => Monoid (IO a) # | Since: 4.9.0.0 |
| Monoid (Last a) # | Since: 2.1 |
| Monoid (First a) # | Since: 2.1 |
| Num a => Monoid (Product a) # | Since: 2.1 |
| Num a => Monoid (Sum a) # | Since: 2.1 |
| Monoid (Endo a) # | Since: 2.1 |
| Monoid a => Monoid (Dual a) # | Since: 2.1 |
| Monoid a => Monoid (Identity a) # | |
| Semigroup a => Monoid (Option a) # | Since: 4.9.0.0 |
| Monoid m => Monoid (WrappedMonoid m) # | Since: 4.9.0.0 |
| (Ord a, Bounded a) => Monoid (Max a) # | Since: 4.9.0.0 |
| (Ord a, Bounded a) => Monoid (Min a) # | Since: 4.9.0.0 |
| Monoid b => Monoid (a -> b) # | Since: 2.1 |
| (Monoid a, Monoid b) => Monoid (a, b) # | Since: 2.1 |
| Monoid (Proxy k s) # | Since: 4.7.0.0 |
| (Monoid a, Monoid b, Monoid c) => Monoid (a, b, c) # | Since: 2.1 |
| Alternative f => Monoid (Alt * f a) # | Since: 4.8.0.0 |
| Monoid a => Monoid (Const k a b) # | |
| (Monoid a, Monoid b, Monoid c, Monoid d) => Monoid (a, b, c, d) # | Since: 2.1 |
| (Monoid a, Monoid b, Monoid c, Monoid d, Monoid e) => Monoid (a, b, c, d, e) # | Since: 2.1 |
Monads and functors
The Functor class is used for types that can be mapped over.
Instances of Functor should satisfy the following laws:
fmap id == id fmap (f . g) == fmap f . fmap g
The instances of Functor for lists, Maybe and IO
satisfy these laws.
Minimal complete definition
Instances
(<$>) :: Functor f => (a -> b) -> f a -> f b infixl 4 #
An infix synonym for fmap.
The name of this operator is an allusion to $.
Note the similarities between their types:
($) :: (a -> b) -> a -> b (<$>) :: Functor f => (a -> b) -> f a -> f b
Whereas $ is function application, <$> is function
application lifted over a Functor.
Examples
Convert from a to a Maybe Int using Maybe Stringshow:
>>>show <$> NothingNothing>>>show <$> Just 3Just "3"
Convert from an to an Either Int IntEither IntString using show:
>>>show <$> Left 17Left 17>>>show <$> Right 17Right "17"
Double each element of a list:
>>>(*2) <$> [1,2,3][2,4,6]
Apply even to the second element of a pair:
>>>even <$> (2,2)(2,True)
class Functor f => Applicative f where #
A functor with application, providing operations to
A minimal complete definition must include implementations of pure
and of either <*> or liftA2. If it defines both, then they must behave
the same as their default definitions:
(
<*>) = liftA2 idliftA2 f x y = f <$> x <*> y
Further, any definition must satisfy the following:
- identity
pureid<*>v = v- composition
pure(.)<*>u<*>v<*>w = u<*>(v<*>w)- homomorphism
puref<*>purex =pure(f x)- interchange
u
<*>purey =pure($y)<*>u
The other methods have the following default definitions, which may be overridden with equivalent specialized implementations:
As a consequence of these laws, the Functor instance for f will satisfy
It may be useful to note that supposing
forall x y. p (q x y) = f x . g y
it follows from the above that
liftA2p (liftA2q u v) =liftA2f u .liftA2g v
If f is also a Monad, it should satisfy
(which implies that pure and <*> satisfy the applicative functor laws).
Methods
Lift a value.
(<*>) :: f (a -> b) -> f a -> f b infixl 4 #
Sequential application.
A few functors support an implementation of <*> that is more
efficient than the default one.
(*>) :: f a -> f b -> f b infixl 4 #
Sequence actions, discarding the value of the first argument.
(<*) :: f a -> f b -> f a infixl 4 #
Sequence actions, discarding the value of the second argument.
Instances
| Applicative [] # | Since: 2.1 |
| Applicative Maybe # | Since: 2.1 |
| Applicative IO # | Since: 2.1 |
| Applicative Par1 # | Since: 4.9.0.0 |
| Applicative ReadP # | Since: 4.6.0.0 |
| Applicative ReadPrec # | Since: 4.6.0.0 |
| Applicative Last # | |
| Applicative First # | |
| Applicative Product # | Since: 4.8.0.0 |
| Applicative Sum # | Since: 4.8.0.0 |
| Applicative Dual # | Since: 4.8.0.0 |
| Applicative STM # | Since: 4.8.0.0 |
| Applicative Identity # | Since: 4.8.0.0 |
| Applicative ZipList # | f '<$>' 'ZipList' xs1 '<*>' ... '<*>' 'ZipList' xsN
|
| Applicative NonEmpty # | Since: 4.9.0.0 |
| Applicative Option # | Since: 4.9.0.0 |
| Applicative Last # | Since: 4.9.0.0 |
| Applicative First # | Since: 4.9.0.0 |
| Applicative Max # | Since: 4.9.0.0 |
| Applicative Min # | Since: 4.9.0.0 |
| Applicative Complex # | Since: 4.9.0.0 |
| Applicative (Either e) # | Since: 3.0 |
| Applicative (U1 *) # | Since: 4.9.0.0 |
| Monoid a => Applicative ((,) a) # | For tuples, the ("hello ", (+15)) <*> ("world!", 2002)
("hello world!",2017)Since: 2.1 |
| Applicative (ST s) # | Since: 4.4.0.0 |
| Applicative (Proxy *) # | Since: 4.7.0.0 |
| Arrow a => Applicative (ArrowMonad a) # | Since: 4.6.0.0 |
| Monad m => Applicative (WrappedMonad m) # | Since: 2.1 |
| Applicative (ST s) # | Since: 2.1 |
| Applicative f => Applicative (Rec1 * f) # | Since: 4.9.0.0 |
| Applicative f => Applicative (Alt * f) # | |
| Monoid m => Applicative (Const * m) # | Since: 2.0.1 |
| Arrow a => Applicative (WrappedArrow a b) # | Since: 2.1 |
| Applicative ((->) LiftedRep LiftedRep a) # | Since: 2.1 |
| (Applicative f, Applicative g) => Applicative ((:*:) * f g) # | Since: 4.9.0.0 |
| (Applicative f, Applicative g) => Applicative (Product * f g) # | Since: 4.9.0.0 |
| Applicative f => Applicative (M1 * i c f) # | Since: 4.9.0.0 |
| (Applicative f, Applicative g) => Applicative ((:.:) * * f g) # | Since: 4.9.0.0 |
| (Applicative f, Applicative g) => Applicative (Compose * * f g) # | Since: 4.9.0.0 |
class Applicative m => Monad m where #
The Monad class defines the basic operations over a monad,
a concept from a branch of mathematics known as category theory.
From the perspective of a Haskell programmer, however, it is best to
think of a monad as an abstract datatype of actions.
Haskell's do expressions provide a convenient syntax for writing
monadic expressions.
Instances of Monad should satisfy the following laws:
Furthermore, the Monad and Applicative operations should relate as follows:
The above laws imply:
and that pure and (<*>) satisfy the applicative functor laws.
The instances of Monad for lists, Maybe and IO
defined in the Prelude satisfy these laws.
Minimal complete definition
Methods
(>>=) :: forall a b. m a -> (a -> m b) -> m b infixl 1 #
Sequentially compose two actions, passing any value produced by the first as an argument to the second.
(>>) :: forall a b. m a -> m b -> m b infixl 1 #
Sequentially compose two actions, discarding any value produced by the first, like sequencing operators (such as the semicolon) in imperative languages.
Inject a value into the monadic type.
Fail with a message. This operation is not part of the
mathematical definition of a monad, but is invoked on pattern-match
failure in a do expression.
As part of the MonadFail proposal (MFP), this function is moved
to its own class MonadFail (see Control.Monad.Fail for more
details). The definition here will be removed in a future
release.
Instances
| Monad [] # | Since: 2.1 |
| Monad Maybe # | Since: 2.1 |
| Monad IO # | Since: 2.1 |
| Monad Par1 # | Since: 4.9.0.0 |
| Monad ReadP # | Since: 2.1 |
| Monad ReadPrec # | Since: 2.1 |
| Monad Last # | |
| Monad First # | |
| Monad Product # | Since: 4.8.0.0 |
| Monad Sum # | Since: 4.8.0.0 |
| Monad Dual # | Since: 4.8.0.0 |
| Monad STM # | Since: 4.3.0.0 |
| Monad Identity # | Since: 4.8.0.0 |
| Monad NonEmpty # | Since: 4.9.0.0 |
| Monad Option # | Since: 4.9.0.0 |
| Monad Last # | Since: 4.9.0.0 |
| Monad First # | Since: 4.9.0.0 |
| Monad Max # | Since: 4.9.0.0 |
| Monad Min # | Since: 4.9.0.0 |
| Monad Complex # | Since: 4.9.0.0 |
| Monad (Either e) # | Since: 4.4.0.0 |
| Monad (U1 *) # | Since: 4.9.0.0 |
| Monoid a => Monad ((,) a) # | Since: 4.9.0.0 |
| Monad (ST s) # | Since: 2.1 |
| Monad (Proxy *) # | Since: 4.7.0.0 |
| ArrowApply a => Monad (ArrowMonad a) # | Since: 2.1 |
| Monad m => Monad (WrappedMonad m) # | |
| Monad (ST s) # | Since: 2.1 |
| Monad f => Monad (Rec1 * f) # | Since: 4.9.0.0 |
| Monad f => Monad (Alt * f) # | |
| Monad ((->) LiftedRep LiftedRep r) # | Since: 2.1 |
| (Monad f, Monad g) => Monad ((:*:) * f g) # | Since: 4.9.0.0 |
| (Monad f, Monad g) => Monad (Product * f g) # | Since: 4.9.0.0 |
| Monad f => Monad (M1 * i c f) # | Since: 4.9.0.0 |
sequence_ :: (Foldable t, Monad m) => t (m a) -> m () #
Evaluate each monadic action in the structure from left to right,
and ignore the results. For a version that doesn't ignore the
results see sequence.
As of base 4.8.0.0, sequence_ is just sequenceA_, specialized
to Monad.
(=<<) :: Monad m => (a -> m b) -> m a -> m b infixr 1 #
Same as >>=, but with the arguments interchanged.
Folds and traversals
Data structures that can be folded.
For example, given a data type
data Tree a = Empty | Leaf a | Node (Tree a) a (Tree a)
a suitable instance would be
instance Foldable Tree where foldMap f Empty = mempty foldMap f (Leaf x) = f x foldMap f (Node l k r) = foldMap f l `mappend` f k `mappend` foldMap f r
This is suitable even for abstract types, as the monoid is assumed
to satisfy the monoid laws. Alternatively, one could define foldr:
instance Foldable Tree where foldr f z Empty = z foldr f z (Leaf x) = f x z foldr f z (Node l k r) = foldr f (f k (foldr f z r)) l
Foldable instances are expected to satisfy the following laws:
foldr f z t = appEndo (foldMap (Endo . f) t ) z
foldl f z t = appEndo (getDual (foldMap (Dual . Endo . flip f) t)) z
fold = foldMap id
sum, product, maximum, and minimum should all be essentially
equivalent to foldMap forms, such as
sum = getSum . foldMap Sum
but may be less defined.
If the type is also a Functor instance, it should satisfy
foldMap f = fold . fmap f
which implies that
foldMap f . fmap g = foldMap (f . g)
Methods
foldMap :: Monoid m => (a -> m) -> t a -> m #
Map each element of the structure to a monoid, and combine the results.
foldr :: (a -> b -> b) -> b -> t a -> b #
Right-associative fold of a structure.
In the case of lists, foldr, when applied to a binary operator, a
starting value (typically the right-identity of the operator), and a
list, reduces the list using the binary operator, from right to left:
foldr f z [x1, x2, ..., xn] == x1 `f` (x2 `f` ... (xn `f` z)...)
Note that, since the head of the resulting expression is produced by
an application of the operator to the first element of the list,
foldr can produce a terminating expression from an infinite list.
For a general Foldable structure this should be semantically identical
to,
foldr f z =foldrf z .toList
foldl :: (b -> a -> b) -> b -> t a -> b #
Left-associative fold of a structure.
In the case of lists, foldl, when applied to a binary
operator, a starting value (typically the left-identity of the operator),
and a list, reduces the list using the binary operator, from left to
right:
foldl f z [x1, x2, ..., xn] == (...((z `f` x1) `f` x2) `f`...) `f` xn
Note that to produce the outermost application of the operator the
entire input list must be traversed. This means that foldl' will
diverge if given an infinite list.
Also note that if you want an efficient left-fold, you probably want to
use foldl' instead of foldl. The reason for this is that latter does
not force the "inner" results (e.g. z in the above example)
before applying them to the operator (e.g. to f x1(). This results
in a thunk chain f x2)O(n) elements long, which then must be evaluated from
the outside-in.
For a general Foldable structure this should be semantically identical
to,
foldl f z =foldlf z .toList
foldr1 :: (a -> a -> a) -> t a -> a #
A variant of foldr that has no base case,
and thus may only be applied to non-empty structures.
foldr1f =foldr1f .toList
foldl1 :: (a -> a -> a) -> t a -> a #
A variant of foldl that has no base case,
and thus may only be applied to non-empty structures.
foldl1f =foldl1f .toList
Test whether the structure is empty. The default implementation is optimized for structures that are similar to cons-lists, because there is no general way to do better.
Returns the size/length of a finite structure as an Int. The
default implementation is optimized for structures that are similar to
cons-lists, because there is no general way to do better.
elem :: Eq a => a -> t a -> Bool infix 4 #
Does the element occur in the structure?
maximum :: forall a. Ord a => t a -> a #
The largest element of a non-empty structure.
minimum :: forall a. Ord a => t a -> a #
The least element of a non-empty structure.
The sum function computes the sum of the numbers of a structure.
product :: Num a => t a -> a #
The product function computes the product of the numbers of a
structure.
Instances
class (Functor t, Foldable t) => Traversable t where #
Functors representing data structures that can be traversed from left to right.
A definition of traverse must satisfy the following laws:
- naturality
t .for every applicative transformationtraversef =traverse(t . f)t- identity
traverseIdentity = Identity- composition
traverse(Compose .fmapg . f) = Compose .fmap(traverseg) .traversef
A definition of sequenceA must satisfy the following laws:
- naturality
t .for every applicative transformationsequenceA=sequenceA.fmaptt- identity
sequenceA.fmapIdentity = Identity- composition
sequenceA.fmapCompose = Compose .fmapsequenceA.sequenceA
where an applicative transformation is a function
t :: (Applicative f, Applicative g) => f a -> g a
preserving the Applicative operations, i.e.
and the identity functor Identity and composition of functors Compose
are defined as
newtype Identity a = Identity a
instance Functor Identity where
fmap f (Identity x) = Identity (f x)
instance Applicative Identity where
pure x = Identity x
Identity f <*> Identity x = Identity (f x)
newtype Compose f g a = Compose (f (g a))
instance (Functor f, Functor g) => Functor (Compose f g) where
fmap f (Compose x) = Compose (fmap (fmap f) x)
instance (Applicative f, Applicative g) => Applicative (Compose f g) where
pure x = Compose (pure (pure x))
Compose f <*> Compose x = Compose ((<*>) <$> f <*> x)(The naturality law is implied by parametricity.)
Instances are similar to Functor, e.g. given a data type
data Tree a = Empty | Leaf a | Node (Tree a) a (Tree a)
a suitable instance would be
instance Traversable Tree where traverse f Empty = pure Empty traverse f (Leaf x) = Leaf <$> f x traverse f (Node l k r) = Node <$> traverse f l <*> f k <*> traverse f r
This is suitable even for abstract types, as the laws for <*>
imply a form of associativity.
The superclass instances should satisfy the following:
- In the
Functorinstance,fmapshould be equivalent to traversal with the identity applicative functor (fmapDefault). - In the
Foldableinstance,foldMapshould be equivalent to traversal with a constant applicative functor (foldMapDefault).
Methods
traverse :: Applicative f => (a -> f b) -> t a -> f (t b) #
Map each element of a structure to an action, evaluate these actions
from left to right, and collect the results. For a version that ignores
the results see traverse_.
sequenceA :: Applicative f => t (f a) -> f (t a) #
Evaluate each action in the structure from left to right, and
and collect the results. For a version that ignores the results
see sequenceA_.
mapM :: Monad m => (a -> m b) -> t a -> m (t b) #
Map each element of a structure to a monadic action, evaluate
these actions from left to right, and collect the results. For
a version that ignores the results see mapM_.
sequence :: Monad m => t (m a) -> m (t a) #
Evaluate each monadic action in the structure from left to
right, and collect the results. For a version that ignores the
results see sequence_.
Instances
Miscellaneous functions
const x is a unary function which evaluates to x for all inputs.
For instance,
>>>map (const 42) [0..3][42,42,42,42]
flip :: (a -> b -> c) -> b -> a -> c #
takes its (first) two arguments in the reverse order of flip ff.
($) :: (a -> b) -> a -> b infixr 0 #
Application operator. This operator is redundant, since ordinary
application (f x) means the same as (f . However, $ x)$ has
low, right-associative binding precedence, so it sometimes allows
parentheses to be omitted; for example:
f $ g $ h x = f (g (h x))
It is also useful in higher-order situations, such as ,
or map ($ 0) xs.zipWith ($) fs xs
until :: (a -> Bool) -> (a -> a) -> a -> a #
yields the result of applying until p ff until p holds.
error :: forall (r :: RuntimeRep). forall (a :: TYPE r). HasCallStack => [Char] -> a #
error stops execution and displays an error message.
errorWithoutStackTrace :: forall (r :: RuntimeRep). forall (a :: TYPE r). [Char] -> a #
A variant of error that does not produce a stack trace.
Since: 4.9.0.0
undefined :: forall (r :: RuntimeRep). forall (a :: TYPE r). HasCallStack => a #
The value of seq a b is bottom if a is bottom, and
otherwise equal to b. seq is usually introduced to
improve performance by avoiding unneeded laziness.
A note on evaluation order: the expression seq a b does
not guarantee that a will be evaluated before b.
The only guarantee given by seq is that the both a
and b will be evaluated before seq returns a value.
In particular, this means that b may be evaluated before
a. If you need to guarantee a specific order of evaluation,
you must use the function pseq from the "parallel" package.
($!) :: (a -> b) -> a -> b infixr 0 #
Strict (call-by-value) application operator. It takes a function and an argument, evaluates the argument to weak head normal form (WHNF), then calls the function with that value.
List operations
map :: (a -> b) -> [a] -> [b] #
map f xs is the list obtained by applying f to each element
of xs, i.e.,
map f [x1, x2, ..., xn] == [f x1, f x2, ..., f xn] map f [x1, x2, ...] == [f x1, f x2, ...]
(++) :: [a] -> [a] -> [a] infixr 5 #
Append two lists, i.e.,
[x1, ..., xm] ++ [y1, ..., yn] == [x1, ..., xm, y1, ..., yn] [x1, ..., xm] ++ [y1, ...] == [x1, ..., xm, y1, ...]
If the first list is not finite, the result is the first list.
filter :: (a -> Bool) -> [a] -> [a] #
filter, applied to a predicate and a list, returns the list of
those elements that satisfy the predicate; i.e.,
filter p xs = [ x | x <- xs, p x]
Return all the elements of a list except the last one. The list must be non-empty.
null :: Foldable t => t a -> Bool #
Test whether the structure is empty. The default implementation is optimized for structures that are similar to cons-lists, because there is no general way to do better.
length :: Foldable t => t a -> Int #
Returns the size/length of a finite structure as an Int. The
default implementation is optimized for structures that are similar to
cons-lists, because there is no general way to do better.
(!!) :: [a] -> Int -> a infixl 9 #
List index (subscript) operator, starting from 0.
It is an instance of the more general genericIndex,
which takes an index of any integral type.
Special folds
any :: Foldable t => (a -> Bool) -> t a -> Bool #
Determines whether any element of the structure satisfies the predicate.
all :: Foldable t => (a -> Bool) -> t a -> Bool #
Determines whether all elements of the structure satisfy the predicate.
concat :: Foldable t => t [a] -> [a] #
The concatenation of all the elements of a container of lists.
concatMap :: Foldable t => (a -> [b]) -> t a -> [b] #
Map a function over all the elements of a container and concatenate the resulting lists.
Building lists
Scans
Infinite lists
iterate :: (a -> a) -> a -> [a] #
iterate f x returns an infinite list of repeated applications
of f to x:
iterate f x == [x, f x, f (f x), ...]
replicate :: Int -> a -> [a] #
replicate n x is a list of length n with x the value of
every element.
It is an instance of the more general genericReplicate,
in which n may be of any integral type.
cycle ties a finite list into a circular one, or equivalently,
the infinite repetition of the original list. It is the identity
on infinite lists.
Sublists
take n, applied to a list xs, returns the prefix of xs
of length n, or xs itself if n > :length xs
take 5 "Hello World!" == "Hello" take 3 [1,2,3,4,5] == [1,2,3] take 3 [1,2] == [1,2] take 3 [] == [] take (-1) [1,2] == [] take 0 [1,2] == []
It is an instance of the more general genericTake,
in which n may be of any integral type.
drop n xs returns the suffix of xs
after the first n elements, or [] if n > :length xs
drop 6 "Hello World!" == "World!" drop 3 [1,2,3,4,5] == [4,5] drop 3 [1,2] == [] drop 3 [] == [] drop (-1) [1,2] == [1,2] drop 0 [1,2] == [1,2]
It is an instance of the more general genericDrop,
in which n may be of any integral type.
splitAt :: Int -> [a] -> ([a], [a]) #
splitAt n xs returns a tuple where first element is xs prefix of
length n and second element is the remainder of the list:
splitAt 6 "Hello World!" == ("Hello ","World!")
splitAt 3 [1,2,3,4,5] == ([1,2,3],[4,5])
splitAt 1 [1,2,3] == ([1],[2,3])
splitAt 3 [1,2,3] == ([1,2,3],[])
splitAt 4 [1,2,3] == ([1,2,3],[])
splitAt 0 [1,2,3] == ([],[1,2,3])
splitAt (-1) [1,2,3] == ([],[1,2,3])It is equivalent to ( when take n xs, drop n xs)n is not _|_
(splitAt _|_ xs = _|_).
splitAt is an instance of the more general genericSplitAt,
in which n may be of any integral type.
takeWhile :: (a -> Bool) -> [a] -> [a] #
takeWhile, applied to a predicate p and a list xs, returns the
longest prefix (possibly empty) of xs of elements that satisfy p:
takeWhile (< 3) [1,2,3,4,1,2,3,4] == [1,2] takeWhile (< 9) [1,2,3] == [1,2,3] takeWhile (< 0) [1,2,3] == []
span :: (a -> Bool) -> [a] -> ([a], [a]) #
span, applied to a predicate p and a list xs, returns a tuple where
first element is longest prefix (possibly empty) of xs of elements that
satisfy p and second element is the remainder of the list:
span (< 3) [1,2,3,4,1,2,3,4] == ([1,2],[3,4,1,2,3,4]) span (< 9) [1,2,3] == ([1,2,3],[]) span (< 0) [1,2,3] == ([],[1,2,3])
break :: (a -> Bool) -> [a] -> ([a], [a]) #
break, applied to a predicate p and a list xs, returns a tuple where
first element is longest prefix (possibly empty) of xs of elements that
do not satisfy p and second element is the remainder of the list:
break (> 3) [1,2,3,4,1,2,3,4] == ([1,2,3],[4,1,2,3,4]) break (< 9) [1,2,3] == ([],[1,2,3]) break (> 9) [1,2,3] == ([1,2,3],[])
Searching lists
lookup :: Eq a => a -> [(a, b)] -> Maybe b #
lookup key assocs looks up a key in an association list.
Zipping and unzipping lists
unzip :: [(a, b)] -> ([a], [b]) #
unzip transforms a list of pairs into a list of first components
and a list of second components.
Functions on strings
lines breaks a string up into a list of strings at newline
characters. The resulting strings do not contain newlines.
Note that after splitting the string at newline characters, the last part of the string is considered a line even if it doesn't end with a newline. For example,
lines "" == [] lines "\n" == [""] lines "one" == ["one"] lines "one\n" == ["one"] lines "one\n\n" == ["one",""] lines "one\ntwo" == ["one","two"] lines "one\ntwo\n" == ["one","two"]
Thus contains at least as many elements as newlines in lines ss.
words breaks a string up into a list of words, which were delimited
by white space.
Converting to and from String
Converting to String
Conversion of values to readable Strings.
Derived instances of Show have the following properties, which
are compatible with derived instances of Read:
- The result of
showis a syntactically correct Haskell expression containing only constants, given the fixity declarations in force at the point where the type is declared. It contains only the constructor names defined in the data type, parentheses, and spaces. When labelled constructor fields are used, braces, commas, field names, and equal signs are also used. - If the constructor is defined to be an infix operator, then
showsPrecwill produce infix applications of the constructor. - the representation will be enclosed in parentheses if the
precedence of the top-level constructor in
xis less thand(associativity is ignored). Thus, ifdis0then the result is never surrounded in parentheses; ifdis11it is always surrounded in parentheses, unless it is an atomic expression. - If the constructor is defined using record syntax, then
showwill produce the record-syntax form, with the fields given in the same order as the original declaration.
For example, given the declarations
infixr 5 :^: data Tree a = Leaf a | Tree a :^: Tree a
the derived instance of Show is equivalent to
instance (Show a) => Show (Tree a) where
showsPrec d (Leaf m) = showParen (d > app_prec) $
showString "Leaf " . showsPrec (app_prec+1) m
where app_prec = 10
showsPrec d (u :^: v) = showParen (d > up_prec) $
showsPrec (up_prec+1) u .
showString " :^: " .
showsPrec (up_prec+1) v
where up_prec = 5Note that right-associativity of :^: is ignored. For example,
produces the stringshow(Leaf 1 :^: Leaf 2 :^: Leaf 3)"Leaf 1 :^: (Leaf 2 :^: Leaf 3)".
Methods
Arguments
| :: Int | the operator precedence of the enclosing
context (a number from |
| -> a | the value to be converted to a |
| -> ShowS |
Convert a value to a readable String.
showsPrec should satisfy the law
showsPrec d x r ++ s == showsPrec d x (r ++ s)
Derived instances of Read and Show satisfy the following:
That is, readsPrec parses the string produced by
showsPrec, and delivers the value that showsPrec started with.
Instances
utility function converting a Char to a show function that
simply prepends the character unchanged.
showString :: String -> ShowS #
utility function converting a String to a show function that
simply prepends the string unchanged.
Converting from String
Parsing of Strings, producing values.
Derived instances of Read make the following assumptions, which
derived instances of Show obey:
- If the constructor is defined to be an infix operator, then the
derived
Readinstance will parse only infix applications of the constructor (not the prefix form). - Associativity is not used to reduce the occurrence of parentheses, although precedence may be.
- If the constructor is defined using record syntax, the derived
Readwill parse only the record-syntax form, and furthermore, the fields must be given in the same order as the original declaration. - The derived
Readinstance allows arbitrary Haskell whitespace between tokens of the input string. Extra parentheses are also allowed.
For example, given the declarations
infixr 5 :^: data Tree a = Leaf a | Tree a :^: Tree a
the derived instance of Read in Haskell 2010 is equivalent to
instance (Read a) => Read (Tree a) where
readsPrec d r = readParen (d > app_prec)
(\r -> [(Leaf m,t) |
("Leaf",s) <- lex r,
(m,t) <- readsPrec (app_prec+1) s]) r
++ readParen (d > up_prec)
(\r -> [(u:^:v,w) |
(u,s) <- readsPrec (up_prec+1) r,
(":^:",t) <- lex s,
(v,w) <- readsPrec (up_prec+1) t]) r
where app_prec = 10
up_prec = 5Note that right-associativity of :^: is unused.
The derived instance in GHC is equivalent to
instance (Read a) => Read (Tree a) where
readPrec = parens $ (prec app_prec $ do
Ident "Leaf" <- lexP
m <- step readPrec
return (Leaf m))
+++ (prec up_prec $ do
u <- step readPrec
Symbol ":^:" <- lexP
v <- step readPrec
return (u :^: v))
where app_prec = 10
up_prec = 5
readListPrec = readListPrecDefaultWhy do both readsPrec and readPrec exist, and why does GHC opt to
implement readPrec in derived Read instances instead of readsPrec?
The reason is that readsPrec is based on the ReadS type, and although
ReadS is mentioned in the Haskell 2010 Report, it is not a very efficient
parser data structure.
readPrec, on the other hand, is based on a much more efficient ReadPrec
datatype (a.k.a "new-style parsers"), but its definition relies on the use
of the RankNTypes language extension. Therefore, readPrec (and its
cousin, readListPrec) are marked as GHC-only. Nevertheless, it is
recommended to use readPrec instead of readsPrec whenever possible
for the efficiency improvements it brings.
As mentioned above, derived Read instances in GHC will implement
readPrec instead of readsPrec. The default implementations of
readsPrec (and its cousin, readList) will simply use readPrec under
the hood. If you are writing a Read instance by hand, it is recommended
to write it like so:
instanceReadT wherereadPrec= ...readListPrec=readListPrecDefault
Methods
Arguments
| :: Int | the operator precedence of the enclosing
context (a number from |
| -> ReadS a |
attempts to parse a value from the front of the string, returning a list of (parsed value, remaining string) pairs. If there is no successful parse, the returned list is empty.
Derived instances of Read and Show satisfy the following:
That is, readsPrec parses the string produced by
showsPrec, and delivers the value that
showsPrec started with.
Instances
| Read Bool # | Since: 2.1 |
| Read Char # | Since: 2.1 |
| Read Double # | Since: 2.1 |
| Read Float # | Since: 2.1 |
| Read Int # | Since: 2.1 |
| Read Int8 # | Since: 2.1 |
| Read Int16 # | Since: 2.1 |
| Read Int32 # | Since: 2.1 |
| Read Int64 # | Since: 2.1 |
| Read Integer # | Since: 2.1 |
| Read Natural # | Since: 4.8.0.0 |
| Read Ordering # | Since: 2.1 |
| Read Word # | Since: 4.5.0.0 |
| Read Word8 # | Since: 2.1 |
| Read Word16 # | Since: 2.1 |
| Read Word32 # | Since: 2.1 |
| Read Word64 # | Since: 2.1 |
| Read () # | Since: 2.1 |
| Read GeneralCategory # | |
| Read Lexeme # | Since: 2.1 |
| Read IOMode # | |
| Read IntPtr # | |
| Read WordPtr # | |
| Read CUIntMax # | |
| Read CIntMax # | |
| Read CUIntPtr # | |
| Read CIntPtr # | |
| Read CSUSeconds # | |
| Read CUSeconds # | |
| Read CTime # | |
| Read CClock # | |
| Read CSigAtomic # | |
| Read CWchar # | |
| Read CSize # | |
| Read CPtrdiff # | |
| Read CDouble # | |
| Read CFloat # | |
| Read CBool # | |
| Read CULLong # | |
| Read CLLong # | |
| Read CULong # | |
| Read CLong # | |
| Read CUInt # | |
| Read CInt # | |
| Read CUShort # | |
| Read CShort # | |
| Read CUChar # | |
| Read CSChar # | |
| Read CChar # | |
| Read SomeNat # | Since: 4.7.0.0 |
| Read SomeSymbol # | Since: 4.7.0.0 |
| Read DecidedStrictness # | |
| Read SourceStrictness # | |
| Read SourceUnpackedness # | |
| Read Associativity # | |
| Read Fixity # | |
| Read Any # | |
| Read All # | |
| Read SeekMode # | |
| Read NewlineMode # | |
| Read Newline # | |
| Read BufferMode # | |
| Read ExitCode # | |
| Read Fd # | |
| Read CKey # | |
| Read CId # | |
| Read CFsFilCnt # | |
| Read CFsBlkCnt # | |
| Read CClockId # | |
| Read CBlkCnt # | |
| Read CBlkSize # | |
| Read CRLim # | |
| Read CTcflag # | |
| Read CSpeed # | |
| Read CCc # | |
| Read CUid # | |
| Read CNlink # | |
| Read CGid # | |
| Read CSsize # | |
| Read CPid # | |
| Read COff # | |
| Read CMode # | |
| Read CIno # | |
| Read CDev # | |
| Read Version # | |
| Read GCStats # | |
| Read GCDetails # | |
| Read RTSStats # | |
| Read Void # | Reading a |
| Read a => Read [a] # | Since: 2.1 |
| Read a => Read (Maybe a) # | Since: 2.1 |
| (Integral a, Read a) => Read (Ratio a) # | Since: 2.1 |
| Read p => Read (Par1 p) # | |
| Read a => Read (Down a) # | |
| Read a => Read (Last a) # | |
| Read a => Read (First a) # | |
| Read a => Read (Product a) # | |
| Read a => Read (Sum a) # | |
| Read a => Read (Dual a) # | |
| Read a => Read (Identity a) # | This instance would be equivalent to the derived instances of the
Since: 4.8.0.0 |
| Read a => Read (ZipList a) # | |
| Read a => Read (NonEmpty a) # | |
| Read a => Read (Option a) # | |
| Read m => Read (WrappedMonoid m) # | |
| Read a => Read (Last a) # | |
| Read a => Read (First a) # | |
| Read a => Read (Max a) # | |
| Read a => Read (Min a) # | |
| HasResolution a => Read (Fixed a) # | Since: 4.3.0.0 |
| Read a => Read (Complex a) # | |
| (Read b, Read a) => Read (Either a b) # | |
| Read (V1 k p) # | |
| Read (U1 k p) # | Since: 4.9.0.0 |
| (Read a, Read b) => Read (a, b) # | Since: 2.1 |
| Read (Proxy k s) # | Since: 4.7.0.0 |
| (Read b, Read a) => Read (Arg a b) # | |
| Read (f p) => Read (Rec1 k f p) # | |
| (Read a, Read b, Read c) => Read (a, b, c) # | Since: 2.1 |
| (~) k a b => Read ((:~:) k a b) # | Since: 4.7.0.0 |
| Coercible k a b => Read (Coercion k a b) # | Since: 4.7.0.0 |
| Read (f a) => Read (Alt k f a) # | |
| Read a => Read (Const k a b) # | This instance would be equivalent to the derived instances of the
Since: 4.8.0.0 |
| Read c => Read (K1 k i c p) # | |
| (Read (g p), Read (f p)) => Read ((:+:) k f g p) # | |
| (Read (g p), Read (f p)) => Read ((:*:) k f g p) # | |
| (Read a, Read b, Read c, Read d) => Read (a, b, c, d) # | Since: 2.1 |
| (~~) k1 k2 a b => Read ((:~~:) k1 k2 a b) # | Since: 4.10.0.0 |
| (Read1 f, Read1 g, Read a) => Read (Sum * f g a) # | Since: 4.9.0.0 |
| (Read1 f, Read1 g, Read a) => Read (Product * f g a) # | Since: 4.9.0.0 |
| Read (f p) => Read (M1 k i c f p) # | |
| Read (f (g p)) => Read ((:.:) k2 k1 f g p) # | |
| (Read a, Read b, Read c, Read d, Read e) => Read (a, b, c, d, e) # | Since: 2.1 |
| (Read1 f, Read1 g, Read a) => Read (Compose * * f g a) # | Since: 4.9.0.0 |
| (Read a, Read b, Read c, Read d, Read e, Read f) => Read (a, b, c, d, e, f) # | Since: 2.1 |
| (Read a, Read b, Read c, Read d, Read e, Read f, Read g) => Read (a, b, c, d, e, f, g) # | Since: 2.1 |
| (Read a, Read b, Read c, Read d, Read e, Read f, Read g, Read h) => Read (a, b, c, d, e, f, g, h) # | Since: 2.1 |
| (Read a, Read b, Read c, Read d, Read e, Read f, Read g, Read h, Read i) => Read (a, b, c, d, e, f, g, h, i) # | Since: 2.1 |
| (Read a, Read b, Read c, Read d, Read e, Read f, Read g, Read h, Read i, Read j) => Read (a, b, c, d, e, f, g, h, i, j) # | Since: 2.1 |
| (Read a, Read b, Read c, Read d, Read e, Read f, Read g, Read h, Read i, Read j, Read k) => Read (a, b, c, d, e, f, g, h, i, j, k) # | Since: 2.1 |
| (Read a, Read b, Read c, Read d, Read e, Read f, Read g, Read h, Read i, Read j, Read k, Read l) => Read (a, b, c, d, e, f, g, h, i, j, k, l) # | Since: 2.1 |
| (Read a, Read b, Read c, Read d, Read e, Read f, Read g, Read h, Read i, Read j, Read k, Read l, Read m) => Read (a, b, c, d, e, f, g, h, i, j, k, l, m) # | Since: 2.1 |
| (Read a, Read b, Read c, Read d, Read e, Read f, Read g, Read h, Read i, Read j, Read k, Read l, Read m, Read n) => Read (a, b, c, d, e, f, g, h, i, j, k, l, m, n) # | Since: 2.1 |
| (Read a, Read b, Read c, Read d, Read e, Read f, Read g, Read h, Read i, Read j, Read k, Read l, Read m, Read n, Read o) => Read (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) # | Since: 2.1 |
read :: Read a => String -> a #
The read function reads input from a string, which must be
completely consumed by the input process.
The lex function reads a single lexeme from the input, discarding
initial white space, and returning the characters that constitute the
lexeme. If the input string contains only white space, lex returns a
single successful `lexeme' consisting of the empty string. (Thus
.) If there is no legal lexeme at the
beginning of the input string, lex "" = [("","")]lex fails (i.e. returns []).
This lexer is not completely faithful to the Haskell lexical syntax in the following respects:
- Qualified names are not handled properly
- Octal and hexadecimal numerics are not recognized as a single token
- Comments are not treated properly
Basic Input and output
A value of type is a computation which, when performed,
does some I/O before returning a value of type IO aa.
There is really only one way to "perform" an I/O action: bind it to
Main.main in your program. When your program is run, the I/O will
be performed. It isn't possible to perform I/O from an arbitrary
function, unless that function is itself in the IO monad and called
at some point, directly or indirectly, from Main.main.
IO is a monad, so IO actions can be combined using either the do-notation
or the >> and >>= operations from the Monad class.
Instances
| Monad IO # | Since: 2.1 |
| Functor IO # | Since: 2.1 |
| MonadFix IO # | Since: 2.1 |
| MonadFail IO # | Since: 4.9.0.0 |
| Applicative IO # | Since: 2.1 |
| MonadPlus IO # | Since: 4.9.0.0 |
| Alternative IO # | Since: 4.9.0.0 |
| MonadIO IO # | Since: 4.9.0.0 |
| Semigroup a => Semigroup (IO a) # | Since: 4.10.0.0 |
| Monoid a => Monoid (IO a) # | Since: 4.9.0.0 |
| (~) * a () => HPrintfType (IO a) # | Since: 4.7.0.0 |
| (~) * a () => PrintfType (IO a) # | Since: 4.7.0.0 |
Simple I/O operations
Output functions
print :: Show a => a -> IO () #
The print function outputs a value of any printable type to the
standard output device.
Printable types are those that are instances of class Show; print
converts values to strings for output using the show operation and
adds a newline.
For example, a program to print the first 20 integers and their powers of 2 could be written as:
main = print ([(n, 2^n) | n <- [0..19]])
Input functions
getContents :: IO String #
The getContents operation returns all user input as a single string,
which is read lazily as it is needed
(same as hGetContents stdin).
interact :: (String -> String) -> IO () #
The interact function takes a function of type String->String
as its argument. The entire input from the standard input device is
passed to this function as its argument, and the resulting string is
output on the standard output device.
Files
File and directory names are values of type String, whose precise
meaning is operating system dependent. Files can be opened, yielding a
handle which can then be used to operate on the contents of that file.
readFile :: FilePath -> IO String #
The readFile function reads a file and
returns the contents of the file as a string.
The file is read lazily, on demand, as with getContents.
writeFile :: FilePath -> String -> IO () #
The computation writeFile file str function writes the string str,
to the file file.
appendFile :: FilePath -> String -> IO () #
The computation appendFile file str function appends the string str,
to the file file.
Note that writeFile and appendFile write a literal string
to a file. To write a value of any printable type, as with print,
use the show function to convert the value to a string first.
main = appendFile "squares" (show [(x,x*x) | x <- [0,0.1..2]])
Exception handling in the I/O monad
type IOError = IOException #