| Safe Haskell | None | 
|---|---|
| Language | Haskell2010 | 
Language.Lexer.Tlex.Prelude
Synopsis
- (++) :: [a] -> [a] -> [a]
 - seq :: forall (r :: RuntimeRep) a (b :: TYPE r). a -> b -> b
 - filter :: (a -> Bool) -> [a] -> [a]
 - zip :: [a] -> [b] -> [(a, b)]
 - print :: Show a => a -> IO ()
 - fst :: (a, b) -> a
 - snd :: (a, b) -> b
 - otherwise :: Bool
 - map :: (a -> b) -> [a] -> [b]
 - fromIntegral :: (Integral a, Num b) => a -> b
 - realToFrac :: (Real a, Fractional b) => a -> b
 - class Bounded a where
 - class Enum a where
- succ :: a -> a
 - pred :: a -> a
 - toEnum :: Int -> a
 - fromEnum :: a -> Int
 - enumFrom :: a -> [a]
 - enumFromThen :: a -> a -> [a]
 - enumFromTo :: a -> a -> [a]
 - enumFromThenTo :: a -> a -> a -> [a]
 
 - class Eq a where
 - class Fractional a => Floating a where
 - class Num a => Fractional a where
- (/) :: a -> a -> a
 - recip :: a -> a
 - fromRational :: Rational -> a
 
 - class (Real a, Enum a) => Integral a where
 - class Applicative m => Monad (m :: Type -> Type) where
 - class Functor (f :: Type -> Type) where
 - class Num a where
 - class Eq a => Ord a where
 - class Read a where
 - class (Num a, Ord a) => Real a where
- toRational :: a -> Rational
 
 - class (RealFrac a, Floating a) => RealFloat a where
- floatRadix :: a -> Integer
 - floatDigits :: a -> Int
 - floatRange :: a -> (Int, Int)
 - decodeFloat :: a -> (Integer, Int)
 - encodeFloat :: Integer -> Int -> a
 - exponent :: a -> Int
 - significand :: a -> a
 - scaleFloat :: Int -> a -> a
 - isNaN :: a -> Bool
 - isInfinite :: a -> Bool
 - isDenormalized :: a -> Bool
 - isNegativeZero :: a -> Bool
 - isIEEE :: a -> Bool
 - atan2 :: a -> a -> a
 
 - class (Real a, Fractional a) => RealFrac a where
 - class Show a where
 - class Monad m => MonadFail (m :: Type -> Type) where
 - class Functor f => Applicative (f :: Type -> Type) where
 - class Foldable (t :: Type -> Type) where
 - class (Functor t, Foldable t) => Traversable (t :: Type -> Type) where
- traverse :: Applicative f => (a -> f b) -> t a -> f (t b)
 - sequenceA :: Applicative f => t (f a) -> f (t a)
 - mapM :: Monad m => (a -> m b) -> t a -> m (t b)
 - sequence :: Monad m => t (m a) -> m (t a)
 
 - class Semigroup a where
- (<>) :: a -> a -> a
 
 - class Semigroup a => Monoid a where
 - data Bool
 - data Char
 - data Double
 - data Float
 - data Int
 - data Integer
 - data Maybe a
 - data Ordering
 - type Rational = Ratio Integer
 - data IO a
 - data Word
 - data Either a b
 - readIO :: Read a => String -> IO a
 - readLn :: Read a => IO a
 - appendFile :: FilePath -> String -> IO ()
 - writeFile :: FilePath -> String -> IO ()
 - readFile :: FilePath -> IO String
 - interact :: (String -> String) -> IO ()
 - getContents :: IO String
 - getLine :: IO String
 - getChar :: IO Char
 - putStrLn :: String -> IO ()
 - putStr :: String -> IO ()
 - putChar :: Char -> IO ()
 - ioError :: IOError -> IO a
 - type FilePath = String
 - userError :: String -> IOError
 - type IOError = IOException
 - notElem :: (Foldable t, Eq a) => a -> t a -> Bool
 - all :: Foldable t => (a -> Bool) -> t a -> Bool
 - any :: Foldable t => (a -> Bool) -> t a -> Bool
 - or :: Foldable t => t Bool -> Bool
 - and :: Foldable t => t Bool -> Bool
 - concatMap :: Foldable t => (a -> [b]) -> t a -> [b]
 - concat :: Foldable t => t [a] -> [a]
 - sequence_ :: (Foldable t, Monad m) => t (m a) -> m ()
 - mapM_ :: (Foldable t, Monad m) => (a -> m b) -> t a -> m ()
 - unwords :: [String] -> String
 - words :: String -> [String]
 - unlines :: [String] -> String
 - lines :: String -> [String]
 - read :: Read a => String -> a
 - reads :: Read a => ReadS a
 - either :: (a -> c) -> (b -> c) -> Either a b -> c
 - lex :: ReadS String
 - readParen :: Bool -> ReadS a -> ReadS a
 - type ReadS a = String -> [(a, String)]
 - lcm :: Integral a => a -> a -> a
 - gcd :: Integral a => a -> a -> a
 - (^^) :: (Fractional a, Integral b) => a -> b -> a
 - (^) :: (Num a, Integral b) => a -> b -> a
 - odd :: Integral a => a -> Bool
 - even :: Integral a => a -> Bool
 - showParen :: Bool -> ShowS -> ShowS
 - showString :: String -> ShowS
 - showChar :: Char -> ShowS
 - shows :: Show a => a -> ShowS
 - type ShowS = String -> String
 - unzip3 :: [(a, b, c)] -> ([a], [b], [c])
 - unzip :: [(a, b)] -> ([a], [b])
 - zipWith3 :: (a -> b -> c -> d) -> [a] -> [b] -> [c] -> [d]
 - zipWith :: (a -> b -> c) -> [a] -> [b] -> [c]
 - zip3 :: [a] -> [b] -> [c] -> [(a, b, c)]
 - (!!) :: [a] -> Int -> a
 - lookup :: Eq a => a -> [(a, b)] -> Maybe b
 - reverse :: [a] -> [a]
 - break :: (a -> Bool) -> [a] -> ([a], [a])
 - span :: (a -> Bool) -> [a] -> ([a], [a])
 - splitAt :: Int -> [a] -> ([a], [a])
 - drop :: Int -> [a] -> [a]
 - take :: Int -> [a] -> [a]
 - dropWhile :: (a -> Bool) -> [a] -> [a]
 - takeWhile :: (a -> Bool) -> [a] -> [a]
 - cycle :: [a] -> [a]
 - replicate :: Int -> a -> [a]
 - repeat :: a -> [a]
 - iterate :: (a -> a) -> a -> [a]
 - scanr1 :: (a -> a -> a) -> [a] -> [a]
 - scanr :: (a -> b -> b) -> b -> [a] -> [b]
 - scanl1 :: (a -> a -> a) -> [a] -> [a]
 - scanl :: (b -> a -> b) -> b -> [a] -> [b]
 - init :: [a] -> [a]
 - last :: [a] -> a
 - maybe :: b -> (a -> b) -> Maybe a -> b
 - (<$>) :: Functor f => (a -> b) -> f a -> f b
 - uncurry :: (a -> b -> c) -> (a, b) -> c
 - curry :: ((a, b) -> c) -> a -> b -> c
 - subtract :: Num a => a -> a -> a
 - asTypeOf :: a -> a -> a
 - until :: (a -> Bool) -> (a -> a) -> a -> a
 - ($!) :: forall (r :: RuntimeRep) a (b :: TYPE r). (a -> b) -> a -> b
 - flip :: (a -> b -> c) -> b -> a -> c
 - (.) :: (b -> c) -> (a -> b) -> a -> c
 - const :: a -> b -> a
 - id :: a -> a
 - (=<<) :: Monad m => (a -> m b) -> m a -> m b
 - undefined :: forall (r :: RuntimeRep) (a :: TYPE r). HasCallStack => a
 - errorWithoutStackTrace :: forall (r :: RuntimeRep) (a :: TYPE r). [Char] -> a
 - error :: forall (r :: RuntimeRep) (a :: TYPE r). HasCallStack => [Char] -> a
 - (&&) :: Bool -> Bool -> Bool
 - (||) :: Bool -> Bool -> Bool
 - not :: Bool -> Bool
 - module Control.Applicative
 - module Control.Monad
 - module Control.Monad.IO.Class
 - liftPass :: Monad m => Pass w m (a, s) -> Pass w (StateT s m) a
 - liftListen :: Monad m => Listen w m (a, s) -> Listen w (StateT s m) a
 - liftCatch :: Catch e m (a, s) -> Catch e (StateT s m) a
 - liftCallCC' :: CallCC m (a, s) (b, s) -> CallCC (StateT s m) a b
 - liftCallCC :: CallCC m (a, s) (b, s) -> CallCC (StateT s m) a b
 - gets :: forall (m :: Type -> Type) s a. Monad m => (s -> a) -> StateT s m a
 - modify' :: forall (m :: Type -> Type) s. Monad m => (s -> s) -> StateT s m ()
 - put :: forall (m :: Type -> Type) s. Monad m => s -> StateT s m ()
 - get :: forall (m :: Type -> Type) s. Monad m => StateT s m s
 - withStateT :: forall s (m :: Type -> Type) a. (s -> s) -> StateT s m a -> StateT s m a
 - mapStateT :: (m (a, s) -> n (b, s)) -> StateT s m a -> StateT s n b
 - execStateT :: Monad m => StateT s m a -> s -> m s
 - evalStateT :: Monad m => StateT s m a -> s -> m a
 - withState :: (s -> s) -> State s a -> State s a
 - mapState :: ((a, s) -> (b, s)) -> State s a -> State s b
 - execState :: State s a -> s -> s
 - evalState :: State s a -> s -> a
 - runState :: State s a -> s -> (a, s)
 - state :: forall (m :: Type -> Type) s a. Monad m => (s -> (a, s)) -> StateT s m a
 - type State s = StateT s Identity
 - newtype StateT s (m :: Type -> Type) a = StateT {
- runStateT :: s -> m (a, s)
 
 - module Data.Coerce
 - class Foldable (t :: Type -> Type) where
- fold :: Monoid m => t m -> m
 - foldMap :: Monoid m => (a -> m) -> t a -> m
 - foldMap' :: Monoid m => (a -> m) -> t a -> m
 - foldr :: (a -> b -> b) -> b -> t a -> b
 - foldl' :: (b -> a -> b) -> b -> t a -> b
 - foldr1 :: (a -> a -> a) -> t a -> a
 - foldl1 :: (a -> a -> a) -> t a -> a
 - toList :: t a -> [a]
 - null :: t a -> Bool
 - length :: t a -> Int
 - elem :: Eq a => a -> t a -> Bool
 - maximum :: Ord a => t a -> a
 - minimum :: Ord a => t a -> a
 - sum :: Num a => t a -> a
 - product :: Num a => t a -> a
 
 - find :: Foldable t => (a -> Bool) -> t a -> Maybe a
 - notElem :: (Foldable t, Eq a) => a -> t a -> Bool
 - minimumBy :: Foldable t => (a -> a -> Ordering) -> t a -> a
 - maximumBy :: Foldable t => (a -> a -> Ordering) -> t a -> a
 - all :: Foldable t => (a -> Bool) -> t a -> Bool
 - any :: Foldable t => (a -> Bool) -> t a -> Bool
 - or :: Foldable t => t Bool -> Bool
 - and :: Foldable t => t Bool -> Bool
 - concatMap :: Foldable t => (a -> [b]) -> t a -> [b]
 - concat :: Foldable t => t [a] -> [a]
 - msum :: (Foldable t, MonadPlus m) => t (m a) -> m a
 - asum :: (Foldable t, Alternative f) => t (f a) -> f a
 - sequence_ :: (Foldable t, Monad m) => t (m a) -> m ()
 - sequenceA_ :: (Foldable t, Applicative f) => t (f a) -> f ()
 - forM_ :: (Foldable t, Monad m) => t a -> (a -> m b) -> m ()
 - mapM_ :: (Foldable t, Monad m) => (a -> m b) -> t a -> m ()
 - for_ :: (Foldable t, Applicative f) => t a -> (a -> f b) -> f ()
 - traverse_ :: (Foldable t, Applicative f) => (a -> f b) -> t a -> f ()
 - foldlM :: (Foldable t, Monad m) => (b -> a -> m b) -> b -> t a -> m b
 - foldrM :: (Foldable t, Monad m) => (a -> b -> m b) -> b -> t a -> m b
 - (&) :: a -> (a -> b) -> b
 - on :: (b -> b -> c) -> (a -> b) -> a -> a -> c
 - fix :: (a -> a) -> a
 - flip :: (a -> b -> c) -> b -> a -> c
 - (.) :: (b -> c) -> (a -> b) -> a -> c
 - const :: a -> b -> a
 - id :: a -> a
 - module Data.Functor
 - module Data.Functor.Identity
 - module Data.Functor.Compose
 - class Ord a => Ix a
 - type Type = Type
 - data NonEmpty a = a :| [a]
 - newtype Down a = Down {
- getDown :: a
 
 - data Proxy (t :: k) = Proxy
 - class Typeable (a :: k)
 - data Word
 - data Word8
 
Documentation
(++) :: [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.
seq :: forall (r :: RuntimeRep) a (b :: TYPE r). a -> b -> b infixr 0 #
The value of seq a b is bottom if a is bottom, and
      otherwise equal to b. In other words, it evaluates the first
      argument a to weak head normal form (WHNF). 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. 
filter :: (a -> Bool) -> [a] -> [a] #
\(\mathcal{O}(n)\). 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]
>>>filter odd [1, 2, 3][1,3]
zip :: [a] -> [b] -> [(a, b)] #
\(\mathcal{O}(\min(m,n))\). zip takes two lists and returns a list of
 corresponding pairs.
zip [1, 2] ['a', 'b'] = [(1, 'a'), (2, 'b')]
If one input list is short, excess elements of the longer list are discarded:
zip [1] ['a', 'b'] = [(1, 'a')] zip [1, 2] ['a'] = [(1, 'a')]
zip is right-lazy:
zip [] _|_ = [] zip _|_ [] = _|_
zip is capable of list fusion, but it is restricted to its
 first list argument and its resulting list.
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]])
map :: (a -> b) -> [a] -> [b] #
\(\mathcal{O}(n)\). 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, ...]
>>>map (+1) [1, 2, 3]
fromIntegral :: (Integral a, Num b) => a -> b #
general coercion from integral types
realToFrac :: (Real a, Fractional b) => a -> b #
general coercion to fractional types
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
| Bounded Bool | Since: base-2.1  | 
| Bounded Char | Since: base-2.1  | 
| Bounded Int | Since: base-2.1  | 
| Bounded Int8 | Since: base-2.1  | 
| Bounded Int16 | Since: base-2.1  | 
| Bounded Int32 | Since: base-2.1  | 
| Bounded Int64 | Since: base-2.1  | 
| Bounded Ordering | Since: base-2.1  | 
| Bounded Word | Since: base-2.1  | 
| Bounded Word8 | Since: base-2.1  | 
| Bounded Word16 | Since: base-2.1  | 
| Bounded Word32 | Since: base-2.1  | 
| Bounded Word64 | Since: base-2.1  | 
| Bounded VecCount | Since: base-4.10.0.0  | 
| Bounded VecElem | Since: base-4.10.0.0  | 
| Bounded () | Since: base-2.1  | 
| Bounded Associativity | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| Bounded SourceUnpackedness | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| Bounded SourceStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| Bounded DecidedStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| Bounded WordPtr | |
| Bounded IntPtr | |
| Bounded a => Bounded (Min a) | Since: base-4.9.0.0  | 
| Bounded a => Bounded (Max a) | Since: base-4.9.0.0  | 
| Bounded a => Bounded (First a) | Since: base-4.9.0.0  | 
| Bounded a => Bounded (Last a) | Since: base-4.9.0.0  | 
| Bounded m => Bounded (WrappedMonoid m) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup  | |
| Bounded a => Bounded (Identity a) | Since: base-4.9.0.0  | 
| Bounded a => Bounded (Down a) | Since: base-4.14.0.0  | 
| (Bounded a, Bounded b) => Bounded (a, b) | Since: base-2.1  | 
| Bounded (Proxy t) | Since: base-4.7.0.0  | 
| (Bounded a, Bounded b, Bounded c) => Bounded (a, b, c) | Since: base-2.1  | 
| Bounded a => Bounded (Const a b) | Since: base-4.9.0.0  | 
| (Bounded a, Bounded b, Bounded c, Bounded d) => Bounded (a, b, c, d) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e) => Bounded (a, b, c, d, e) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f) => Bounded (a, b, c, d, e, f) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g) => Bounded (a, b, c, d, e, f, g) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h) => Bounded (a, b, c, d, e, f, g, h) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i) => Bounded (a, b, c, d, e, f, g, h, i) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j) => Bounded (a, b, c, d, e, f, g, h, i, j) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k) => Bounded (a, b, c, d, e, f, g, h, i, j, k) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k, Bounded l) => Bounded (a, b, c, d, e, f, g, h, i, j, k, l) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k, Bounded l, Bounded m) => Bounded (a, b, c, d, e, f, g, h, i, j, k, l, m) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k, Bounded l, Bounded m, Bounded n) => Bounded (a, b, c, d, e, f, g, h, i, j, k, l, m, n) | Since: base-2.1  | 
| (Bounded a, Bounded b, Bounded c, Bounded d, Bounded e, Bounded f, Bounded g, Bounded h, Bounded i, Bounded j, Bounded k, Bounded l, Bounded m, Bounded n, Bounded o) => Bounded (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) | Since: base-2.1  | 
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..] with [n..] = enumFrom n,
   a possible implementation being enumFrom n = n : enumFrom (succ n).
   For example:
enumFrom 4 :: [Integer] = [4,5,6,7,...]
enumFrom 6 :: [Int] = [6,7,8,9,...,maxBound :: Int]
enumFromThen :: a -> a -> [a] #
Used in Haskell's translation of [n,n'..]
   with [n,n'..] = enumFromThen n n', a possible implementation being
   enumFromThen n n' = n : n' : worker (f x) (f x n'),
   worker s v = v : worker s (s v), x = fromEnum n' - fromEnum n and
   f n y
     | n > 0 = f (n - 1) (succ y)
     | n < 0 = f (n + 1) (pred y)
     | otherwise = y
   For example:
enumFromThen 4 6 :: [Integer] = [4,6,8,10...]
enumFromThen 6 2 :: [Int] = [6,2,-2,-6,...,minBound :: Int]
enumFromTo :: a -> a -> [a] #
Used in Haskell's translation of [n..m] with
   [n..m] = enumFromTo n m, a possible implementation being
   enumFromTo n m
      | n <= m = n : enumFromTo (succ n) m
      | otherwise = [].
   For example:
enumFromTo 6 10 :: [Int] = [6,7,8,9,10]
enumFromTo 42 1 :: [Integer] = []
enumFromThenTo :: a -> a -> a -> [a] #
Used in Haskell's translation of [n,n'..m] with
   [n,n'..m] = enumFromThenTo n n' m, a possible implementation
   being enumFromThenTo n n' m = worker (f x) (c x) n m,
   x = fromEnum n' - fromEnum n, c x = bool (>=) ((x 0)
   f n y
      | n > 0 = f (n - 1) (succ y)
      | n < 0 = f (n + 1) (pred y)
      | otherwise = y and
   worker s c v m
      | c v m = v : worker s c (s v) m
      | otherwise = []
   For example:
enumFromThenTo 4 2 -6 :: [Integer] = [4,2,0,-2,-4,-6]
enumFromThenTo 6 8 2 :: [Int] = []
Instances
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.
The Haskell Report defines no laws for Eq. However, == is customarily
 expected to implement an equivalence relationship where two values comparing
 equal are indistinguishable by "public" functions, with a "public" function
 being one not allowing to see implementation details. For example, for a
 type representing non-normalised natural numbers modulo 100, a "public"
 function doesn't make the difference between 1 and 201. It is expected to
 have the following properties:
Instances
| Eq Bool | |
| Eq Char | |
| Eq Double | Note that due to the presence of  
 Also note that  
  | 
| Eq Float | Note that due to the presence of  
 Also note that  
  | 
| Eq Int | |
| Eq Int8 | Since: base-2.1  | 
| Eq Int16 | Since: base-2.1  | 
| Eq Int32 | Since: base-2.1  | 
| Eq Int64 | Since: base-2.1  | 
| Eq Integer | |
| Eq Natural | Since: base-4.8.0.0  | 
| Eq Ordering | |
| Eq Word | |
| Eq Word8 | Since: base-2.1  | 
| Eq Word16 | Since: base-2.1  | 
| Eq Word32 | Since: base-2.1  | 
| Eq Word64 | Since: base-2.1  | 
| Eq SomeTypeRep | |
Defined in Data.Typeable.Internal  | |
| Eq () | |
| Eq TyCon | |
| Eq Module | |
| Eq TrName | |
| Eq Void | Since: base-4.8.0.0  | 
| Eq SpecConstrAnnotation | Since: base-4.3.0.0  | 
Defined in GHC.Exts Methods (==) :: SpecConstrAnnotation -> SpecConstrAnnotation -> Bool # (/=) :: SpecConstrAnnotation -> SpecConstrAnnotation -> Bool #  | |
| Eq Unique | |
| Eq Version | Since: base-2.1  | 
| Eq ThreadId | Since: base-4.2.0.0  | 
| Eq BlockReason | Since: base-4.3.0.0  | 
Defined in GHC.Conc.Sync  | |
| Eq ThreadStatus | Since: base-4.3.0.0  | 
Defined in GHC.Conc.Sync  | |
| Eq AsyncException | Since: base-4.2.0.0  | 
Defined in GHC.IO.Exception Methods (==) :: AsyncException -> AsyncException -> Bool # (/=) :: AsyncException -> AsyncException -> Bool #  | |
| Eq ArrayException | Since: base-4.2.0.0  | 
Defined in GHC.IO.Exception Methods (==) :: ArrayException -> ArrayException -> Bool # (/=) :: ArrayException -> ArrayException -> Bool #  | |
| Eq ExitCode | |
| Eq IOErrorType | Since: base-4.1.0.0  | 
Defined in GHC.IO.Exception  | |
| Eq MaskingState | Since: base-4.3.0.0  | 
Defined in GHC.IO  | |
| Eq IOException | Since: base-4.1.0.0  | 
Defined in GHC.IO.Exception  | |
| Eq ArithException | Since: base-3.0  | 
Defined in GHC.Exception.Type Methods (==) :: ArithException -> ArithException -> Bool # (/=) :: ArithException -> ArithException -> Bool #  | |
| Eq Fixity | Since: base-4.6.0.0  | 
| Eq Associativity | Since: base-4.6.0.0  | 
Defined in GHC.Generics Methods (==) :: Associativity -> Associativity -> Bool # (/=) :: Associativity -> Associativity -> Bool #  | |
| Eq SourceUnpackedness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods (==) :: SourceUnpackedness -> SourceUnpackedness -> Bool # (/=) :: SourceUnpackedness -> SourceUnpackedness -> Bool #  | |
| Eq SourceStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods (==) :: SourceStrictness -> SourceStrictness -> Bool # (/=) :: SourceStrictness -> SourceStrictness -> Bool #  | |
| Eq DecidedStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods (==) :: DecidedStrictness -> DecidedStrictness -> Bool # (/=) :: DecidedStrictness -> DecidedStrictness -> Bool #  | |
| Eq WordPtr | |
| Eq IntPtr | |
| Eq Fingerprint | Since: base-4.4.0.0  | 
Defined in GHC.Fingerprint.Type  | |
| Eq SrcLoc | Since: base-4.9.0.0  | 
| Eq ShortByteString | |
Defined in Data.ByteString.Short.Internal Methods (==) :: ShortByteString -> ShortByteString -> Bool # (/=) :: ShortByteString -> ShortByteString -> Bool #  | |
| Eq ByteString | |
Defined in Data.ByteString.Lazy.Internal  | |
| Eq ByteString | |
Defined in Data.ByteString.Internal  | |
| Eq IntSet | |
| Eq BigNat | |
| Eq StateSet Source # | |
| Eq StateNum Source # | |
| Eq AcceptPriority Source # | |
Defined in Language.Lexer.Tlex.Machine.Pattern Methods (==) :: AcceptPriority -> AcceptPriority -> Bool # (/=) :: AcceptPriority -> AcceptPriority -> Bool #  | |
| Eq StartState Source # | |
Defined in Language.Lexer.Tlex.Machine.Pattern  | |
| Eq NFAStateTrans Source # | |
Defined in Language.Lexer.Tlex.Machine.NFA Methods (==) :: NFAStateTrans -> NFAStateTrans -> Bool # (/=) :: NFAStateTrans -> NFAStateTrans -> Bool #  | |
| Eq a => Eq [a] | |
| Eq a => Eq (Maybe a) | Since: base-2.1  | 
| Eq a => Eq (Ratio a) | Since: base-2.1  | 
| Eq (Ptr a) | Since: base-2.1  | 
| Eq (FunPtr a) | |
| Eq p => Eq (Par1 p) | Since: base-4.7.0.0  | 
| Eq a => Eq (Complex a) | Since: base-2.1  | 
| Eq a => Eq (Min a) | Since: base-4.9.0.0  | 
| Eq a => Eq (Max a) | Since: base-4.9.0.0  | 
| Eq a => Eq (First a) | Since: base-4.9.0.0  | 
| Eq a => Eq (Last a) | Since: base-4.9.0.0  | 
| Eq m => Eq (WrappedMonoid m) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods (==) :: WrappedMonoid m -> WrappedMonoid m -> Bool # (/=) :: WrappedMonoid m -> WrappedMonoid m -> Bool #  | |
| Eq a => Eq (Option a) | Since: base-4.9.0.0  | 
| Eq (StableName a) | Since: base-2.1  | 
Defined in GHC.StableName  | |
| Eq a => Eq (ZipList a) | Since: base-4.7.0.0  | 
| Eq a => Eq (Identity a) | Since: base-4.8.0.0  | 
| Eq (TVar a) | Since: base-4.8.0.0  | 
| Eq a => Eq (Down a) | Since: base-4.6.0.0  | 
| Eq a => Eq (NonEmpty a) | Since: base-4.9.0.0  | 
| Eq a => Eq (IntMap a) | |
| Eq vertex => Eq (SCC vertex) | Since: containers-0.5.9  | 
| Eq a => Eq (Tree a) | |
| Eq a => Eq (Seq a) | |
| Eq a => Eq (ViewL a) | |
| Eq a => Eq (ViewR a) | |
| Eq a => Eq (Set a) | |
| Eq a => Eq (Hashed a) | Uses precomputed hash to detect inequality faster  | 
| Eq a => Eq (HashSet a) | Note that, in the presence of hash collisions, equal  
 
 
 In general, the lack of substitutivity can be observed with any function that depends on the key ordering, such as folds and traversals.  | 
| Eq a => Eq (StateArray a) Source # | |
Defined in Language.Lexer.Tlex.Machine.State  | |
| Eq a => Eq (StateMap a) Source # | |
| Eq a => Eq (Accept a) Source # | |
| Eq a => Eq (NFAState a) Source # | |
| Eq a => Eq (NFA a) Source # | |
| Eq m => Eq (DFABuilderContext m) Source # | |
Defined in Language.Lexer.Tlex.Machine.DFA Methods (==) :: DFABuilderContext m -> DFABuilderContext m -> Bool # (/=) :: DFABuilderContext m -> DFABuilderContext m -> Bool #  | |
| Eq a => Eq (DFAState a) Source # | |
| Eq a => Eq (DFA a) Source # | |
| Eq a => Eq (Bag a) Source # | |
| (Eq a, Eq b) => Eq (Either a b) | Since: base-2.1  | 
| Eq (V1 p) | Since: base-4.9.0.0  | 
| Eq (U1 p) | Since: base-4.9.0.0  | 
| Eq (TypeRep a) | Since: base-2.1  | 
| (Eq a, Eq b) => Eq (a, b) | |
| (Ix i, Eq e) => Eq (Array i e) | Since: base-2.1  | 
| Eq (Fixed a) | Since: base-2.1  | 
| Eq a => Eq (Arg a b) | Since: base-4.9.0.0  | 
| Eq (Proxy s) | Since: base-4.7.0.0  | 
| (Eq k, Eq a) => Eq (Map k a) | |
| (Eq k, Eq v) => Eq (Leaf k v) | |
| (Eq k, Eq v) => Eq (HashMap k v) | Note that, in the presence of hash collisions, equal  
 
 
 In general, the lack of substitutivity can be observed with any function that depends on the key ordering, such as folds and traversals.  | 
| Eq (EnumSet a) Source # | |
| Eq (SymEnumSet a) Source # | |
Defined in Language.Lexer.Tlex.Data.SymEnumSet  | |
| Eq (Pattern e) Source # | |
| Eq (f p) => Eq (Rec1 f p) | Since: base-4.7.0.0  | 
| Eq (URec (Ptr ()) p) | Since: base-4.9.0.0  | 
| Eq (URec Char p) | Since: base-4.9.0.0  | 
| Eq (URec Double p) | Since: base-4.9.0.0  | 
| Eq (URec Float p) | |
| Eq (URec Int p) | Since: base-4.9.0.0  | 
| Eq (URec Word p) | Since: base-4.9.0.0  | 
| (Eq a, Eq b, Eq c) => Eq (a, b, c) | |
| Eq (STArray s i e) | Since: base-2.1  | 
| Eq a => Eq (Const a b) | Since: base-4.9.0.0  | 
| Eq a => Eq (EnumMap k2 a) Source # | |
| Eq c => Eq (K1 i c p) | Since: base-4.7.0.0  | 
| (Eq (f p), Eq (g p)) => Eq ((f :+: g) p) | Since: base-4.7.0.0  | 
| (Eq (f p), Eq (g p)) => Eq ((f :*: g) p) | Since: base-4.7.0.0  | 
| (Eq a, Eq b, Eq c, Eq d) => Eq (a, b, c, d) | |
| (Eq1 f, Eq1 g, Eq a) => Eq (Product f g a) | Since: base-4.9.0.0  | 
| (Eq1 f, Eq1 g, Eq a) => Eq (Sum f g a) | Since: base-4.9.0.0  | 
| Eq (f p) => Eq (M1 i c f p) | Since: base-4.7.0.0  | 
| Eq (f (g p)) => Eq ((f :.: g) p) | Since: base-4.7.0.0  | 
| (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: base-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 Fractional a => Floating a where #
Trigonometric and hyperbolic functions and related functions.
The Haskell Report defines no laws for Floating. However, (, +)(
 and *)exp are customarily expected to define an exponential field and have
 the following properties:
exp (a + b)=exp a * exp bexp (fromInteger 0)=fromInteger 1
Minimal complete definition
pi, exp, log, sin, cos, asin, acos, atan, sinh, cosh, asinh, acosh, atanh
Instances
class Num a => Fractional a where #
Fractional numbers, supporting real division.
The Haskell Report defines no laws for Fractional. However, ( and
 +)( are customarily expected to define a division ring and have the
 following properties:*)
recipgives the multiplicative inversex * recip x=recip x * x=fromInteger 1
Note that it isn't customarily expected that a type instance of
 Fractional implement a field. However, all instances in base do.
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
| Integral a => Fractional (Ratio a) | Since: base-2.0.1  | 
| RealFloat a => Fractional (Complex a) | Since: base-2.1  | 
| Fractional a => Fractional (Identity a) | Since: base-4.9.0.0  | 
| Fractional a => Fractional (Down a) | Since: base-4.14.0.0  | 
| HasResolution a => Fractional (Fixed a) | Since: base-2.1  | 
| Fractional a => Fractional (Const a b) | Since: base-4.9.0.0  | 
class (Real a, Enum a) => Integral a where #
Integral numbers, supporting integer division.
The Haskell Report defines no laws for Integral. However, Integral
 instances are customarily expected to define a Euclidean domain and have the
 following properties for the div/mod and quot/rem pairs, given
 suitable Euclidean functions f and g:
x=y * quot x y + rem x ywithrem x y=fromInteger 0org (rem x y)<g yx=y * div x y + mod x ywithmod x y=fromInteger 0orf (mod x y)<f y
An example of a suitable Euclidean function, for Integer's instance, is
 abs.
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
| Integral Int | Since: base-2.0.1  | 
| Integral Int8 | Since: base-2.1  | 
| Integral Int16 | Since: base-2.1  | 
| Integral Int32 | Since: base-2.1  | 
| Integral Int64 | Since: base-2.1  | 
| Integral Integer | Since: base-2.0.1  | 
Defined in GHC.Real  | |
| Integral Natural | Since: base-4.8.0.0  | 
Defined in GHC.Real  | |
| Integral Word | Since: base-2.1  | 
| Integral Word8 | Since: base-2.1  | 
| Integral Word16 | Since: base-2.1  | 
| Integral Word32 | Since: base-2.1  | 
| Integral Word64 | Since: base-2.1  | 
| Integral WordPtr | |
Defined in Foreign.Ptr  | |
| Integral IntPtr | |
Defined in Foreign.Ptr  | |
| Integral a => Integral (Identity a) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Identity Methods quot :: Identity a -> Identity a -> Identity a # rem :: Identity a -> Identity a -> Identity a # div :: Identity a -> Identity a -> Identity a # mod :: Identity a -> Identity a -> Identity a # quotRem :: Identity a -> Identity a -> (Identity a, Identity a) # divMod :: Identity a -> Identity a -> (Identity a, Identity a) #  | |
| Integral a => Integral (Down a) | Since: base-4.14.0.0  | 
| Integral a => Integral (Const a b) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Const Methods quot :: Const a b -> Const a b -> Const a b # rem :: Const a b -> Const a b -> Const a b # div :: Const a b -> Const a b -> Const a b # mod :: Const a b -> Const a b -> Const a b # quotRem :: Const a b -> Const a b -> (Const a b, Const a b) # divMod :: Const a b -> Const a b -> (Const a b, Const a b) #  | |
class Applicative m => Monad (m :: Type -> Type) 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:
- Left identity
 returna>>=k = k a- Right identity
 m>>=return= m- Associativity
 m>>=(\x -> k x>>=h) = (m>>=k)>>=h
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
(>>=) :: 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.
'as ' can be understood as the >>= bsdo expression
do a <- as bs a
(>>) :: 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.
'as ' can be understood as the >> bsdo expression
do as bs
Inject a value into the monadic type.
Instances
| Monad [] | Since: base-2.1  | 
| Monad Maybe | Since: base-2.1  | 
| Monad IO | Since: base-2.1  | 
| Monad Par1 | Since: base-4.9.0.0  | 
| Monad Complex | Since: base-4.9.0.0  | 
| Monad Min | Since: base-4.9.0.0  | 
| Monad Max | Since: base-4.9.0.0  | 
| Monad First | Since: base-4.9.0.0  | 
| Monad Last | Since: base-4.9.0.0  | 
| Monad Option | Since: base-4.9.0.0  | 
| Monad Identity | Since: base-4.8.0.0  | 
| Monad STM | Since: base-4.3.0.0  | 
| Monad Down | Since: base-4.11.0.0  | 
| Monad ReadP | Since: base-2.1  | 
| Monad NonEmpty | Since: base-4.9.0.0  | 
| Monad Tree | |
| Monad Seq | |
| Monad P | Since: base-2.1  | 
| Monad (Either e) | Since: base-4.4.0.0  | 
| Monad (U1 :: Type -> Type) | Since: base-4.9.0.0  | 
| Monoid a => Monad ((,) a) | Since: base-4.9.0.0  | 
| Monad m => Monad (WrappedMonad m) | Since: base-4.7.0.0  | 
Defined in Control.Applicative Methods (>>=) :: WrappedMonad m a -> (a -> WrappedMonad m b) -> WrappedMonad m b # (>>) :: WrappedMonad m a -> WrappedMonad m b -> WrappedMonad m b # return :: a -> WrappedMonad m a #  | |
| Monad (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
| Monad (SetM s) | |
| Monad f => Monad (Rec1 f) | Since: base-4.9.0.0  | 
| (Monoid a, Monoid b) => Monad ((,,) a b) | Since: base-4.14.0.0  | 
| (Applicative f, Monad f) => Monad (WhenMissing f x) | Equivalent to  Since: containers-0.5.9  | 
Defined in Data.IntMap.Internal Methods (>>=) :: WhenMissing f x a -> (a -> WhenMissing f x b) -> WhenMissing f x b # (>>) :: WhenMissing f x a -> WhenMissing f x b -> WhenMissing f x b # return :: a -> WhenMissing f x a #  | |
| Monad m => Monad (StateT s m) | |
| Monad ((->) r :: Type -> Type) | Since: base-2.1  | 
| (Monad f, Monad g) => Monad (f :*: g) | Since: base-4.9.0.0  | 
| (Monoid a, Monoid b, Monoid c) => Monad ((,,,) a b c) | Since: base-4.14.0.0  | 
| (Monad f, Monad g) => Monad (Product f g) | Since: base-4.9.0.0  | 
| (Monad f, Applicative f) => Monad (WhenMatched f x y) | Equivalent to  Since: containers-0.5.9  | 
Defined in Data.IntMap.Internal Methods (>>=) :: WhenMatched f x y a -> (a -> WhenMatched f x y b) -> WhenMatched f x y b # (>>) :: WhenMatched f x y a -> WhenMatched f x y b -> WhenMatched f x y b # return :: a -> WhenMatched f x y a #  | |
| (Applicative f, Monad f) => Monad (WhenMissing f k x) | Equivalent to  Since: containers-0.5.9  | 
Defined in Data.Map.Internal Methods (>>=) :: WhenMissing f k x a -> (a -> WhenMissing f k x b) -> WhenMissing f k x b # (>>) :: WhenMissing f k x a -> WhenMissing f k x b -> WhenMissing f k x b # return :: a -> WhenMissing f k x a #  | |
| Monad f => Monad (M1 i c f) | Since: base-4.9.0.0  | 
| (Monad f, Applicative f) => Monad (WhenMatched f k x y) | Equivalent to  Since: containers-0.5.9  | 
Defined in Data.Map.Internal Methods (>>=) :: WhenMatched f k x y a -> (a -> WhenMatched f k x y b) -> WhenMatched f k x y b # (>>) :: WhenMatched f k x y a -> WhenMatched f k x y b -> WhenMatched f k x y b # return :: a -> WhenMatched f k x y a #  | |
class Functor (f :: Type -> Type) where #
A type f is a Functor if it provides a function fmap which, given any types a and b
lets you apply any function from (a -> b) to turn an f a into an f b, preserving the
structure of f. Furthermore f needs to adhere to the following:
Note, that the second law follows from the free theorem of the type fmap and
the first law, so you need only check that the former condition holds.
Minimal complete definition
Methods
fmap :: (a -> b) -> f a -> f b #
Using ApplicativeDo: '' can be understood as
 the fmap f asdo expression
do a <- as pure (f a)
with an inferred Functor constraint.
Instances
| Functor [] | Since: base-2.1  | 
| Functor Maybe | Since: base-2.1  | 
| Functor IO | Since: base-2.1  | 
| Functor Par1 | Since: base-4.9.0.0  | 
| Functor Complex | Since: base-4.9.0.0  | 
| Functor Min | Since: base-4.9.0.0  | 
| Functor Max | Since: base-4.9.0.0  | 
| Functor First | Since: base-4.9.0.0  | 
| Functor Last | Since: base-4.9.0.0  | 
| Functor Option | Since: base-4.9.0.0  | 
| Functor ZipList | Since: base-2.1  | 
| Functor Identity | Since: base-4.8.0.0  | 
| Functor Handler | Since: base-4.6.0.0  | 
| Functor STM | Since: base-4.3.0.0  | 
| Functor Down | Since: base-4.11.0.0  | 
| Functor ReadP | Since: base-2.1  | 
| Functor NonEmpty | Since: base-4.9.0.0  | 
| Functor IntMap | |
| Functor SCC | Since: containers-0.5.4  | 
| Functor Tree | |
| Functor Seq | |
| Functor FingerTree | |
Defined in Data.Sequence.Internal Methods fmap :: (a -> b) -> FingerTree a -> FingerTree b # (<$) :: a -> FingerTree b -> FingerTree a #  | |
| Functor Digit | |
| Functor Node | |
| Functor Elem | |
| Functor ViewL | |
| Functor ViewR | |
| Functor P | Since: base-4.8.0.0  | 
Defined in Text.ParserCombinators.ReadP  | |
| Functor StateArray Source # | |
Defined in Language.Lexer.Tlex.Machine.State Methods fmap :: (a -> b) -> StateArray a -> StateArray b # (<$) :: a -> StateArray b -> StateArray a #  | |
| Functor StateMap Source # | |
| Functor Accept Source # | |
| Functor NFAState Source # | |
| Functor NFA Source # | |
| Functor DFABuilderContext Source # | |
Defined in Language.Lexer.Tlex.Machine.DFA Methods fmap :: (a -> b) -> DFABuilderContext a -> DFABuilderContext b # (<$) :: a -> DFABuilderContext b -> DFABuilderContext a #  | |
| Functor DFAState Source # | |
| Functor DFA Source # | |
| Functor Bag Source # | |
| Functor (Either a) | Since: base-3.0  | 
| Functor (V1 :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (U1 :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor ((,) a) | Since: base-2.1  | 
| Functor (Array i) | Since: base-2.1  | 
| Functor (Arg a) | Since: base-4.9.0.0  | 
| Monad m => Functor (WrappedMonad m) | Since: base-2.1  | 
Defined in Control.Applicative Methods fmap :: (a -> b) -> WrappedMonad m a -> WrappedMonad m b # (<$) :: a -> WrappedMonad m b -> WrappedMonad m a #  | |
| Functor (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
| Functor (Map k) | |
| Functor (HashMap k) | |
| Functor (SetM s) | |
Defined in Data.Graph  | |
| Functor f => Functor (Rec1 f) | Since: base-4.9.0.0  | 
| Functor (URec Char :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Double :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Float :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Int :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Word :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec (Ptr ()) :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor ((,,) a b) | Since: base-4.14.0.0  | 
| Arrow a => Functor (WrappedArrow a b) | Since: base-2.1  | 
Defined in Control.Applicative Methods fmap :: (a0 -> b0) -> WrappedArrow a b a0 -> WrappedArrow a b b0 # (<$) :: a0 -> WrappedArrow a b b0 -> WrappedArrow a b a0 #  | |
| Functor (Const m :: Type -> Type) | Since: base-2.1  | 
| (Applicative f, Monad f) => Functor (WhenMissing f x) | Since: containers-0.5.9  | 
Defined in Data.IntMap.Internal Methods fmap :: (a -> b) -> WhenMissing f x a -> WhenMissing f x b # (<$) :: a -> WhenMissing f x b -> WhenMissing f x a #  | |
| Functor m => Functor (StateT s m) | |
| Functor (EnumMap k2) Source # | |
| Functor ((->) r :: Type -> Type) | Since: base-2.1  | 
| Functor (K1 i c :: Type -> Type) | Since: base-4.9.0.0  | 
| (Functor f, Functor g) => Functor (f :+: g) | Since: base-4.9.0.0  | 
| (Functor f, Functor g) => Functor (f :*: g) | Since: base-4.9.0.0  | 
| Functor ((,,,) a b c) | Since: base-4.14.0.0  | 
| (Functor f, Functor g) => Functor (Product f g) | Since: base-4.9.0.0  | 
| (Functor f, Functor g) => Functor (Sum f g) | Since: base-4.9.0.0  | 
| Functor f => Functor (WhenMatched f x y) | Since: containers-0.5.9  | 
Defined in Data.IntMap.Internal Methods fmap :: (a -> b) -> WhenMatched f x y a -> WhenMatched f x y b # (<$) :: a -> WhenMatched f x y b -> WhenMatched f x y a #  | |
| (Applicative f, Monad f) => Functor (WhenMissing f k x) | Since: containers-0.5.9  | 
Defined in Data.Map.Internal Methods fmap :: (a -> b) -> WhenMissing f k x a -> WhenMissing f k x b # (<$) :: a -> WhenMissing f k x b -> WhenMissing f k x a #  | |
| Functor f => Functor (M1 i c f) | Since: base-4.9.0.0  | 
| (Functor f, Functor g) => Functor (f :.: g) | Since: base-4.9.0.0  | 
| (Functor f, Functor g) => Functor (Compose f g) | Since: base-4.9.0.0  | 
| Functor f => Functor (WhenMatched f k x y) | Since: containers-0.5.9  | 
Defined in Data.Map.Internal Methods fmap :: (a -> b) -> WhenMatched f k x y a -> WhenMatched f k x y b # (<$) :: a -> WhenMatched f k x y b -> WhenMatched f k x y a #  | |
Basic numeric class.
The Haskell Report defines no laws for Num. However, ( and +)( are
 customarily expected to define a ring and have the following properties:*)
- Associativity of 
(+) (x + y) + z=x + (y + z)- Commutativity of 
(+) x + y=y + xis the additive identityfromInteger0x + fromInteger 0=xnegategives the additive inversex + negate x=fromInteger 0- Associativity of 
(*) (x * y) * z=x * (y * z)is the multiplicative identityfromInteger1x * fromInteger 1=xandfromInteger 1 * x=x- Distributivity of 
(with respect to*)(+) a * (b + c)=(a * b) + (a * c)and(b + c) * a=(b * a) + (c * a)
Note that it isn't customarily expected that a type instance of both Num
 and Ord implement an ordered ring. Indeed, in base only Integer and
 Rational do.
Methods
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
| Num Int | Since: base-2.1  | 
| Num Int8 | Since: base-2.1  | 
| Num Int16 | Since: base-2.1  | 
| Num Int32 | Since: base-2.1  | 
| Num Int64 | Since: base-2.1  | 
| Num Integer | Since: base-2.1  | 
| Num Natural | Note that  Since: base-4.8.0.0  | 
| Num Word | Since: base-2.1  | 
| Num Word8 | Since: base-2.1  | 
| Num Word16 | Since: base-2.1  | 
| Num Word32 | Since: base-2.1  | 
| Num Word64 | Since: base-2.1  | 
| Num WordPtr | |
| Num IntPtr | |
| Integral a => Num (Ratio a) | Since: base-2.0.1  | 
| RealFloat a => Num (Complex a) | Since: base-2.1  | 
| Num a => Num (Min a) | Since: base-4.9.0.0  | 
| Num a => Num (Max a) | Since: base-4.9.0.0  | 
| Num a => Num (Identity a) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Identity  | |
| Num a => Num (Down a) | Since: base-4.11.0.0  | 
| HasResolution a => Num (Fixed a) | Since: base-2.1  | 
| Num a => Num (Const a b) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Const  | |
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.
The Haskell Report defines no laws for Ord. However, <= is customarily
 expected to implement a non-strict partial order and have the following
 properties:
- Transitivity
 - if 
x <= y && y <= z=True, thenx <= z=True - Reflexivity
 x <= x=True- Antisymmetry
 - if 
x <= y && y <= x=True, thenx == y=True 
Note that the following operator interactions are expected to hold:
x >= y=y <= xx < y=x <= y && x /= yx > y=y < xx < y=compare x y == LTx > y=compare x y == GTx == y=compare x y == EQmin x y == if x <= y then x else y=Truemax x y == if x >= y then x else y=True
Note that (7.) and (8.) do not require min and max to return either of
 their arguments. The result is merely required to equal one of the
 arguments in terms of (==).
Minimal complete definition: either compare or <=.
 Using compare can be more efficient for complex types.
Methods
compare :: a -> a -> Ordering #
(<) :: a -> a -> Bool infix 4 #
(<=) :: a -> a -> Bool infix 4 #
(>) :: a -> a -> Bool infix 4 #
Instances
| Ord Bool | |
| Ord Char | |
| Ord Double | Note that due to the presence of  
 Also note that, due to the same,  
  | 
| Ord Float | Note that due to the presence of  
 Also note that, due to the same,  
  | 
| Ord Int | |
| Ord Int8 | Since: base-2.1  | 
| Ord Int16 | Since: base-2.1  | 
| Ord Int32 | Since: base-2.1  | 
| Ord Int64 | Since: base-2.1  | 
| Ord Integer | |
| Ord Natural | Since: base-4.8.0.0  | 
| Ord Ordering | |
Defined in GHC.Classes  | |
| Ord Word | |
| Ord Word8 | Since: base-2.1  | 
| Ord Word16 | Since: base-2.1  | 
| Ord Word32 | Since: base-2.1  | 
| Ord Word64 | Since: base-2.1  | 
| Ord SomeTypeRep | |
Defined in Data.Typeable.Internal Methods compare :: SomeTypeRep -> SomeTypeRep -> Ordering # (<) :: SomeTypeRep -> SomeTypeRep -> Bool # (<=) :: SomeTypeRep -> SomeTypeRep -> Bool # (>) :: SomeTypeRep -> SomeTypeRep -> Bool # (>=) :: SomeTypeRep -> SomeTypeRep -> Bool # max :: SomeTypeRep -> SomeTypeRep -> SomeTypeRep # min :: SomeTypeRep -> SomeTypeRep -> SomeTypeRep #  | |
| Ord () | |
| Ord TyCon | |
| Ord Void | Since: base-4.8.0.0  | 
| Ord Unique | |
| Ord Version | Since: base-2.1  | 
| Ord ThreadId | Since: base-4.2.0.0  | 
Defined in GHC.Conc.Sync  | |
| Ord BlockReason | Since: base-4.3.0.0  | 
Defined in GHC.Conc.Sync Methods compare :: BlockReason -> BlockReason -> Ordering # (<) :: BlockReason -> BlockReason -> Bool # (<=) :: BlockReason -> BlockReason -> Bool # (>) :: BlockReason -> BlockReason -> Bool # (>=) :: BlockReason -> BlockReason -> Bool # max :: BlockReason -> BlockReason -> BlockReason # min :: BlockReason -> BlockReason -> BlockReason #  | |
| Ord ThreadStatus | Since: base-4.3.0.0  | 
Defined in GHC.Conc.Sync Methods compare :: ThreadStatus -> ThreadStatus -> Ordering # (<) :: ThreadStatus -> ThreadStatus -> Bool # (<=) :: ThreadStatus -> ThreadStatus -> Bool # (>) :: ThreadStatus -> ThreadStatus -> Bool # (>=) :: ThreadStatus -> ThreadStatus -> Bool # max :: ThreadStatus -> ThreadStatus -> ThreadStatus # min :: ThreadStatus -> ThreadStatus -> ThreadStatus #  | |
| Ord AsyncException | Since: base-4.2.0.0  | 
Defined in GHC.IO.Exception Methods compare :: AsyncException -> AsyncException -> Ordering # (<) :: AsyncException -> AsyncException -> Bool # (<=) :: AsyncException -> AsyncException -> Bool # (>) :: AsyncException -> AsyncException -> Bool # (>=) :: AsyncException -> AsyncException -> Bool # max :: AsyncException -> AsyncException -> AsyncException # min :: AsyncException -> AsyncException -> AsyncException #  | |
| Ord ArrayException | Since: base-4.2.0.0  | 
Defined in GHC.IO.Exception Methods compare :: ArrayException -> ArrayException -> Ordering # (<) :: ArrayException -> ArrayException -> Bool # (<=) :: ArrayException -> ArrayException -> Bool # (>) :: ArrayException -> ArrayException -> Bool # (>=) :: ArrayException -> ArrayException -> Bool # max :: ArrayException -> ArrayException -> ArrayException # min :: ArrayException -> ArrayException -> ArrayException #  | |
| Ord ExitCode | |
Defined in GHC.IO.Exception  | |
| Ord ArithException | Since: base-3.0  | 
Defined in GHC.Exception.Type Methods compare :: ArithException -> ArithException -> Ordering # (<) :: ArithException -> ArithException -> Bool # (<=) :: ArithException -> ArithException -> Bool # (>) :: ArithException -> ArithException -> Bool # (>=) :: ArithException -> ArithException -> Bool # max :: ArithException -> ArithException -> ArithException # min :: ArithException -> ArithException -> ArithException #  | |
| Ord Fixity | Since: base-4.6.0.0  | 
| Ord Associativity | Since: base-4.6.0.0  | 
Defined in GHC.Generics Methods compare :: Associativity -> Associativity -> Ordering # (<) :: Associativity -> Associativity -> Bool # (<=) :: Associativity -> Associativity -> Bool # (>) :: Associativity -> Associativity -> Bool # (>=) :: Associativity -> Associativity -> Bool # max :: Associativity -> Associativity -> Associativity # min :: Associativity -> Associativity -> Associativity #  | |
| Ord SourceUnpackedness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods compare :: SourceUnpackedness -> SourceUnpackedness -> Ordering # (<) :: SourceUnpackedness -> SourceUnpackedness -> Bool # (<=) :: SourceUnpackedness -> SourceUnpackedness -> Bool # (>) :: SourceUnpackedness -> SourceUnpackedness -> Bool # (>=) :: SourceUnpackedness -> SourceUnpackedness -> Bool # max :: SourceUnpackedness -> SourceUnpackedness -> SourceUnpackedness # min :: SourceUnpackedness -> SourceUnpackedness -> SourceUnpackedness #  | |
| Ord SourceStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods compare :: SourceStrictness -> SourceStrictness -> Ordering # (<) :: SourceStrictness -> SourceStrictness -> Bool # (<=) :: SourceStrictness -> SourceStrictness -> Bool # (>) :: SourceStrictness -> SourceStrictness -> Bool # (>=) :: SourceStrictness -> SourceStrictness -> Bool # max :: SourceStrictness -> SourceStrictness -> SourceStrictness # min :: SourceStrictness -> SourceStrictness -> SourceStrictness #  | |
| Ord DecidedStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods compare :: DecidedStrictness -> DecidedStrictness -> Ordering # (<) :: DecidedStrictness -> DecidedStrictness -> Bool # (<=) :: DecidedStrictness -> DecidedStrictness -> Bool # (>) :: DecidedStrictness -> DecidedStrictness -> Bool # (>=) :: DecidedStrictness -> DecidedStrictness -> Bool # max :: DecidedStrictness -> DecidedStrictness -> DecidedStrictness # min :: DecidedStrictness -> DecidedStrictness -> DecidedStrictness #  | |
| Ord WordPtr | |
| Ord IntPtr | |
| Ord Fingerprint | Since: base-4.4.0.0  | 
Defined in GHC.Fingerprint.Type Methods compare :: Fingerprint -> Fingerprint -> Ordering # (<) :: Fingerprint -> Fingerprint -> Bool # (<=) :: Fingerprint -> Fingerprint -> Bool # (>) :: Fingerprint -> Fingerprint -> Bool # (>=) :: Fingerprint -> Fingerprint -> Bool # max :: Fingerprint -> Fingerprint -> Fingerprint # min :: Fingerprint -> Fingerprint -> Fingerprint #  | |
| Ord ShortByteString | |
Defined in Data.ByteString.Short.Internal Methods compare :: ShortByteString -> ShortByteString -> Ordering # (<) :: ShortByteString -> ShortByteString -> Bool # (<=) :: ShortByteString -> ShortByteString -> Bool # (>) :: ShortByteString -> ShortByteString -> Bool # (>=) :: ShortByteString -> ShortByteString -> Bool # max :: ShortByteString -> ShortByteString -> ShortByteString # min :: ShortByteString -> ShortByteString -> ShortByteString #  | |
| Ord ByteString | |
Defined in Data.ByteString.Lazy.Internal Methods compare :: ByteString -> ByteString -> Ordering # (<) :: ByteString -> ByteString -> Bool # (<=) :: ByteString -> ByteString -> Bool # (>) :: ByteString -> ByteString -> Bool # (>=) :: ByteString -> ByteString -> Bool # max :: ByteString -> ByteString -> ByteString # min :: ByteString -> ByteString -> ByteString #  | |
| Ord ByteString | |
Defined in Data.ByteString.Internal Methods compare :: ByteString -> ByteString -> Ordering # (<) :: ByteString -> ByteString -> Bool # (<=) :: ByteString -> ByteString -> Bool # (>) :: ByteString -> ByteString -> Bool # (>=) :: ByteString -> ByteString -> Bool # max :: ByteString -> ByteString -> ByteString # min :: ByteString -> ByteString -> ByteString #  | |
| Ord IntSet | |
| Ord BigNat | |
| Ord StateNum Source # | |
Defined in Language.Lexer.Tlex.Machine.State  | |
| Ord AcceptPriority Source # | |
Defined in Language.Lexer.Tlex.Machine.Pattern Methods compare :: AcceptPriority -> AcceptPriority -> Ordering # (<) :: AcceptPriority -> AcceptPriority -> Bool # (<=) :: AcceptPriority -> AcceptPriority -> Bool # (>) :: AcceptPriority -> AcceptPriority -> Bool # (>=) :: AcceptPriority -> AcceptPriority -> Bool # max :: AcceptPriority -> AcceptPriority -> AcceptPriority # min :: AcceptPriority -> AcceptPriority -> AcceptPriority #  | |
| Ord a => Ord [a] | |
| Ord a => Ord (Maybe a) | Since: base-2.1  | 
| Integral a => Ord (Ratio a) | Since: base-2.0.1  | 
| Ord (Ptr a) | Since: base-2.1  | 
| Ord (FunPtr a) | |
Defined in GHC.Ptr  | |
| Ord p => Ord (Par1 p) | Since: base-4.7.0.0  | 
| Ord a => Ord (Min a) | Since: base-4.9.0.0  | 
| Ord a => Ord (Max a) | Since: base-4.9.0.0  | 
| Ord a => Ord (First a) | Since: base-4.9.0.0  | 
| Ord a => Ord (Last a) | Since: base-4.9.0.0  | 
| Ord m => Ord (WrappedMonoid m) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods compare :: WrappedMonoid m -> WrappedMonoid m -> Ordering # (<) :: WrappedMonoid m -> WrappedMonoid m -> Bool # (<=) :: WrappedMonoid m -> WrappedMonoid m -> Bool # (>) :: WrappedMonoid m -> WrappedMonoid m -> Bool # (>=) :: WrappedMonoid m -> WrappedMonoid m -> Bool # max :: WrappedMonoid m -> WrappedMonoid m -> WrappedMonoid m # min :: WrappedMonoid m -> WrappedMonoid m -> WrappedMonoid m #  | |
| Ord a => Ord (Option a) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup  | |
| Ord a => Ord (ZipList a) | Since: base-4.7.0.0  | 
| Ord a => Ord (Identity a) | Since: base-4.8.0.0  | 
Defined in Data.Functor.Identity  | |
| Ord a => Ord (Down a) | Since: base-4.6.0.0  | 
| Ord a => Ord (NonEmpty a) | Since: base-4.9.0.0  | 
| Ord a => Ord (IntMap a) | |
Defined in Data.IntMap.Internal  | |
| Ord a => Ord (Seq a) | |
| Ord a => Ord (ViewL a) | |
Defined in Data.Sequence.Internal  | |
| Ord a => Ord (ViewR a) | |
Defined in Data.Sequence.Internal  | |
| Ord a => Ord (Set a) | |
| Ord a => Ord (Hashed a) | |
Defined in Data.Hashable.Class  | |
| Ord a => Ord (HashSet a) | |
| (Ord a, Ord b) => Ord (Either a b) | Since: base-2.1  | 
| Ord (V1 p) | Since: base-4.9.0.0  | 
| Ord (U1 p) | Since: base-4.7.0.0  | 
| Ord (TypeRep a) | Since: base-4.4.0.0  | 
| (Ord a, Ord b) => Ord (a, b) | |
| (Ix i, Ord e) => Ord (Array i e) | Since: base-2.1  | 
| Ord (Fixed a) | Since: base-2.1  | 
| Ord a => Ord (Arg a b) | Since: base-4.9.0.0  | 
| Ord (Proxy s) | Since: base-4.7.0.0  | 
| (Ord k, Ord v) => Ord (Map k v) | |
| (Ord k, Ord v) => Ord (HashMap k v) | The ordering is total and consistent with the   | 
Defined in Data.HashMap.Internal  | |
| Ord (f p) => Ord (Rec1 f p) | Since: base-4.7.0.0  | 
Defined in GHC.Generics  | |
| Ord (URec (Ptr ()) p) | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods compare :: URec (Ptr ()) p -> URec (Ptr ()) p -> Ordering # (<) :: URec (Ptr ()) p -> URec (Ptr ()) p -> Bool # (<=) :: URec (Ptr ()) p -> URec (Ptr ()) p -> Bool # (>) :: URec (Ptr ()) p -> URec (Ptr ()) p -> Bool # (>=) :: URec (Ptr ()) p -> URec (Ptr ()) p -> Bool # max :: URec (Ptr ()) p -> URec (Ptr ()) p -> URec (Ptr ()) p # min :: URec (Ptr ()) p -> URec (Ptr ()) p -> URec (Ptr ()) p #  | |
| Ord (URec Char p) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| Ord (URec Double p) | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods compare :: URec Double p -> URec Double p -> Ordering # (<) :: URec Double p -> URec Double p -> Bool # (<=) :: URec Double p -> URec Double p -> Bool # (>) :: URec Double p -> URec Double p -> Bool # (>=) :: URec Double p -> URec Double p -> Bool #  | |
| Ord (URec Float p) | |
Defined in GHC.Generics  | |
| Ord (URec Int p) | Since: base-4.9.0.0  | 
| Ord (URec Word p) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| (Ord a, Ord b, Ord c) => Ord (a, b, c) | |
| Ord a => Ord (Const a b) | Since: base-4.9.0.0  | 
| Ord c => Ord (K1 i c p) | Since: base-4.7.0.0  | 
Defined in GHC.Generics  | |
| (Ord (f p), Ord (g p)) => Ord ((f :+: g) p) | Since: base-4.7.0.0  | 
Defined in GHC.Generics  | |
| (Ord (f p), Ord (g p)) => Ord ((f :*: g) p) | Since: base-4.7.0.0  | 
Defined in GHC.Generics  | |
| (Ord a, Ord b, Ord c, Ord d) => Ord (a, b, c, d) | |
Defined in GHC.Classes  | |
| (Ord1 f, Ord1 g, Ord a) => Ord (Product f g a) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Product Methods compare :: Product f g a -> Product f g a -> Ordering # (<) :: Product f g a -> Product f g a -> Bool # (<=) :: Product f g a -> Product f g a -> Bool # (>) :: Product f g a -> Product f g a -> Bool # (>=) :: Product f g a -> Product f g a -> Bool #  | |
| (Ord1 f, Ord1 g, Ord a) => Ord (Sum f g a) | Since: base-4.9.0.0  | 
| Ord (f p) => Ord (M1 i c f p) | Since: base-4.7.0.0  | 
| Ord (f (g p)) => Ord ((f :.: g) p) | Since: base-4.7.0.0  | 
Defined in GHC.Generics  | |
| (Ord a, Ord b, Ord c, Ord d, Ord e) => Ord (a, b, c, d, e) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e) -> (a, b, c, d, e) -> Ordering # (<) :: (a, b, c, d, e) -> (a, b, c, d, e) -> Bool # (<=) :: (a, b, c, d, e) -> (a, b, c, d, e) -> Bool # (>) :: (a, b, c, d, e) -> (a, b, c, d, e) -> Bool # (>=) :: (a, b, c, d, e) -> (a, b, c, d, e) -> Bool # max :: (a, b, c, d, e) -> (a, b, c, d, e) -> (a, b, c, d, e) # min :: (a, b, c, d, e) -> (a, b, c, d, e) -> (a, b, c, d, e) #  | |
| (Ord1 f, Ord1 g, Ord a) => Ord (Compose f g a) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Compose Methods compare :: Compose f g a -> Compose f g a -> Ordering # (<) :: Compose f g a -> Compose f g a -> Bool # (<=) :: Compose f g a -> Compose f g a -> Bool # (>) :: Compose f g a -> Compose f g a -> Bool # (>=) :: Compose f g a -> Compose f g a -> Bool #  | |
| (Ord a, Ord b, Ord c, Ord d, Ord e, Ord f) => Ord (a, b, c, d, e, f) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f) -> (a, b, c, d, e, f) -> Ordering # (<) :: (a, b, c, d, e, f) -> (a, b, c, d, e, f) -> Bool # (<=) :: (a, b, c, d, e, f) -> (a, b, c, d, e, f) -> Bool # (>) :: (a, b, c, d, e, f) -> (a, b, c, d, e, f) -> Bool # (>=) :: (a, b, c, d, e, f) -> (a, b, c, d, e, f) -> Bool # max :: (a, b, c, d, e, f) -> (a, b, c, d, e, f) -> (a, b, c, d, e, f) # min :: (a, b, c, d, e, f) -> (a, b, c, d, e, f) -> (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) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f, g) -> (a, b, c, d, e, f, g) -> Ordering # (<) :: (a, b, c, d, e, f, g) -> (a, b, c, d, e, f, g) -> Bool # (<=) :: (a, b, c, d, e, f, g) -> (a, b, c, d, e, f, g) -> Bool # (>) :: (a, b, c, d, e, f, g) -> (a, b, c, d, e, f, g) -> Bool # (>=) :: (a, b, c, d, e, f, g) -> (a, b, c, d, e, f, g) -> Bool # max :: (a, b, c, d, e, f, g) -> (a, b, c, d, e, f, g) -> (a, b, c, d, e, f, g) # min :: (a, b, c, d, e, f, g) -> (a, b, c, d, e, f, g) -> (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) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f, g, h) -> (a, b, c, d, e, f, g, h) -> Ordering # (<) :: (a, b, c, d, e, f, g, h) -> (a, b, c, d, e, f, g, h) -> Bool # (<=) :: (a, b, c, d, e, f, g, h) -> (a, b, c, d, e, f, g, h) -> Bool # (>) :: (a, b, c, d, e, f, g, h) -> (a, b, c, d, e, f, g, h) -> Bool # (>=) :: (a, b, c, d, e, f, g, h) -> (a, b, c, d, e, f, g, h) -> Bool # max :: (a, b, c, d, e, f, g, h) -> (a, b, c, d, e, f, g, h) -> (a, b, c, d, e, f, g, h) # min :: (a, b, c, d, e, f, g, h) -> (a, b, c, d, e, f, g, h) -> (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) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f, g, h, i) -> (a, b, c, d, e, f, g, h, i) -> Ordering # (<) :: (a, b, c, d, e, f, g, h, i) -> (a, b, c, d, e, f, g, h, i) -> Bool # (<=) :: (a, b, c, d, e, f, g, h, i) -> (a, b, c, d, e, f, g, h, i) -> Bool # (>) :: (a, b, c, d, e, f, g, h, i) -> (a, b, c, d, e, f, g, h, i) -> Bool # (>=) :: (a, b, c, d, e, f, g, h, i) -> (a, b, c, d, e, f, g, h, i) -> Bool # max :: (a, b, c, d, e, f, g, h, i) -> (a, b, c, d, e, f, g, h, i) -> (a, b, c, d, e, f, g, h, i) # min :: (a, b, c, d, e, f, g, h, i) -> (a, b, c, d, e, f, g, h, i) -> (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) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f, g, h, i, j) -> (a, b, c, d, e, f, g, h, i, j) -> Ordering # (<) :: (a, b, c, d, e, f, g, h, i, j) -> (a, b, c, d, e, f, g, h, i, j) -> Bool # (<=) :: (a, b, c, d, e, f, g, h, i, j) -> (a, b, c, d, e, f, g, h, i, j) -> Bool # (>) :: (a, b, c, d, e, f, g, h, i, j) -> (a, b, c, d, e, f, g, h, i, j) -> Bool # (>=) :: (a, b, c, d, e, f, g, h, i, j) -> (a, b, c, d, e, f, g, h, i, j) -> Bool # max :: (a, b, c, d, e, f, g, h, i, j) -> (a, b, c, d, e, f, g, h, i, j) -> (a, b, c, d, e, f, g, h, i, j) # min :: (a, b, c, d, e, f, g, h, i, j) -> (a, b, c, d, e, f, g, h, i, j) -> (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) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f, g, h, i, j, k) -> (a, b, c, d, e, f, g, h, i, j, k) -> Ordering # (<) :: (a, b, c, d, e, f, g, h, i, j, k) -> (a, b, c, d, e, f, g, h, i, j, k) -> Bool # (<=) :: (a, b, c, d, e, f, g, h, i, j, k) -> (a, b, c, d, e, f, g, h, i, j, k) -> Bool # (>) :: (a, b, c, d, e, f, g, h, i, j, k) -> (a, b, c, d, e, f, g, h, i, j, k) -> Bool # (>=) :: (a, b, c, d, e, f, g, h, i, j, k) -> (a, b, c, d, e, f, g, h, i, j, k) -> Bool # max :: (a, b, c, d, e, f, g, h, i, j, k) -> (a, b, c, d, e, f, g, h, i, j, k) -> (a, b, c, d, e, f, g, h, i, j, k) # min :: (a, b, c, d, e, f, g, h, i, j, k) -> (a, b, c, d, e, f, g, h, i, j, k) -> (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) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f, g, h, i, j, k, l) -> (a, b, c, d, e, f, g, h, i, j, k, l) -> Ordering # (<) :: (a, b, c, d, e, f, g, h, i, j, k, l) -> (a, b, c, d, e, f, g, h, i, j, k, l) -> Bool # (<=) :: (a, b, c, d, e, f, g, h, i, j, k, l) -> (a, b, c, d, e, f, g, h, i, j, k, l) -> Bool # (>) :: (a, b, c, d, e, f, g, h, i, j, k, l) -> (a, b, c, d, e, f, g, h, i, j, k, l) -> Bool # (>=) :: (a, b, c, d, e, f, g, h, i, j, k, l) -> (a, b, c, d, e, f, g, h, i, j, k, l) -> Bool # max :: (a, b, c, d, e, f, g, h, i, j, k, l) -> (a, b, c, d, e, f, g, h, i, j, k, l) -> (a, b, c, d, e, f, g, h, i, j, k, l) # min :: (a, b, c, d, e, f, g, h, i, j, k, l) -> (a, b, c, d, e, f, g, h, i, j, k, l) -> (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) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f, g, h, i, j, k, l, m) -> (a, b, c, d, e, f, g, h, i, j, k, l, m) -> Ordering # (<) :: (a, b, c, d, e, f, g, h, i, j, k, l, m) -> (a, b, c, d, e, f, g, h, i, j, k, l, m) -> Bool # (<=) :: (a, b, c, d, e, f, g, h, i, j, k, l, m) -> (a, b, c, d, e, f, g, h, i, j, k, l, m) -> Bool # (>) :: (a, b, c, d, e, f, g, h, i, j, k, l, m) -> (a, b, c, d, e, f, g, h, i, j, k, l, m) -> Bool # (>=) :: (a, b, c, d, e, f, g, h, i, j, k, l, m) -> (a, b, c, d, e, f, g, h, i, j, k, l, m) -> Bool # max :: (a, b, c, d, e, f, g, h, i, j, k, l, m) -> (a, b, c, d, e, f, g, h, i, j, k, l, m) -> (a, b, c, d, e, f, g, h, i, j, k, l, m) # min :: (a, b, c, d, e, f, g, h, i, j, k, l, m) -> (a, b, c, d, e, f, g, h, i, j, k, l, m) -> (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) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> Ordering # (<) :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> Bool # (<=) :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> Bool # (>) :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> Bool # (>=) :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> Bool # max :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n) # min :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n) -> (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) | |
Defined in GHC.Classes Methods compare :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> Ordering # (<) :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> Bool # (<=) :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> Bool # (>) :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> Bool # (>=) :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> Bool # max :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) # min :: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) -> (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) #  | |
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: base-2.1  | 
| Read Char | Since: base-2.1  | 
| Read Double | Since: base-2.1  | 
| Read Float | Since: base-2.1  | 
| Read Int | Since: base-2.1  | 
| Read Int8 | Since: base-2.1  | 
| Read Int16 | Since: base-2.1  | 
| Read Int32 | Since: base-2.1  | 
| Read Int64 | Since: base-2.1  | 
| Read Integer | Since: base-2.1  | 
| Read Natural | Since: base-4.8.0.0  | 
| Read Ordering | Since: base-2.1  | 
| Read Word | Since: base-4.5.0.0  | 
| Read Word8 | Since: base-2.1  | 
| Read Word16 | Since: base-2.1  | 
| Read Word32 | Since: base-2.1  | 
| Read Word64 | Since: base-2.1  | 
| Read () | Since: base-2.1  | 
| Read Void | Reading a  Since: base-4.8.0.0  | 
| Read Version | Since: base-2.1  | 
| Read ExitCode | |
| Read Fixity | Since: base-4.6.0.0  | 
| Read Associativity | Since: base-4.6.0.0  | 
Defined in GHC.Generics Methods readsPrec :: Int -> ReadS Associativity # readList :: ReadS [Associativity] #  | |
| Read SourceUnpackedness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods readsPrec :: Int -> ReadS SourceUnpackedness # readList :: ReadS [SourceUnpackedness] #  | |
| Read SourceStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods readsPrec :: Int -> ReadS SourceStrictness # readList :: ReadS [SourceStrictness] #  | |
| Read DecidedStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods readsPrec :: Int -> ReadS DecidedStrictness # readList :: ReadS [DecidedStrictness] #  | |
| Read WordPtr | |
| Read IntPtr | |
| Read Lexeme | Since: base-2.1  | 
| Read GeneralCategory | Since: base-2.1  | 
Defined in GHC.Read Methods readsPrec :: Int -> ReadS GeneralCategory # readList :: ReadS [GeneralCategory] #  | |
| Read ShortByteString | |
Defined in Data.ByteString.Short.Internal Methods readsPrec :: Int -> ReadS ShortByteString # readList :: ReadS [ShortByteString] #  | |
| Read ByteString | |
Defined in Data.ByteString.Lazy.Internal Methods readsPrec :: Int -> ReadS ByteString # readList :: ReadS [ByteString] # readPrec :: ReadPrec ByteString # readListPrec :: ReadPrec [ByteString] #  | |
| Read ByteString | |
Defined in Data.ByteString.Internal Methods readsPrec :: Int -> ReadS ByteString # readList :: ReadS [ByteString] # readPrec :: ReadPrec ByteString # readListPrec :: ReadPrec [ByteString] #  | |
| Read IntSet | |
| Read a => Read [a] | Since: base-2.1  | 
| Read a => Read (Maybe a) | Since: base-2.1  | 
| (Integral a, Read a) => Read (Ratio a) | Since: base-2.1  | 
| Read p => Read (Par1 p) | Since: base-4.7.0.0  | 
| Read a => Read (Complex a) | Since: base-2.1  | 
| Read a => Read (Min a) | Since: base-4.9.0.0  | 
| Read a => Read (Max a) | Since: base-4.9.0.0  | 
| Read a => Read (First a) | Since: base-4.9.0.0  | 
| Read a => Read (Last a) | Since: base-4.9.0.0  | 
| Read m => Read (WrappedMonoid m) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods readsPrec :: Int -> ReadS (WrappedMonoid m) # readList :: ReadS [WrappedMonoid m] # readPrec :: ReadPrec (WrappedMonoid m) # readListPrec :: ReadPrec [WrappedMonoid m] #  | |
| Read a => Read (Option a) | Since: base-4.9.0.0  | 
| Read a => Read (ZipList a) | Since: base-4.7.0.0  | 
| Read a => Read (Identity a) | This instance would be equivalent to the derived instances of the
  Since: base-4.8.0.0  | 
| Read a => Read (Down a) | This instance would be equivalent to the derived instances of the
  Since: base-4.7.0.0  | 
| Read a => Read (NonEmpty a) | Since: base-4.11.0.0  | 
| Read e => Read (IntMap e) | |
| Read vertex => Read (SCC vertex) | Since: containers-0.5.9  | 
| Read a => Read (Tree a) | |
| Read a => Read (Seq a) | |
| Read a => Read (ViewL a) | |
| Read a => Read (ViewR a) | |
| (Read a, Ord a) => Read (Set a) | |
| (Eq a, Hashable a, Read a) => Read (HashSet a) | |
| (Read a, Read b) => Read (Either a b) | Since: base-3.0  | 
| Read (V1 p) | Since: base-4.9.0.0  | 
| Read (U1 p) | Since: base-4.9.0.0  | 
| (Read a, Read b) => Read (a, b) | Since: base-2.1  | 
| (Ix a, Read a, Read b) => Read (Array a b) | Since: base-2.1  | 
| HasResolution a => Read (Fixed a) | Since: base-4.3.0.0  | 
| (Read a, Read b) => Read (Arg a b) | Since: base-4.9.0.0  | 
| Read (Proxy t) | Since: base-4.7.0.0  | 
| (Ord k, Read k, Read e) => Read (Map k e) | |
| (Eq k, Hashable k, Read k, Read e) => Read (HashMap k e) | |
| Read (f p) => Read (Rec1 f p) | Since: base-4.7.0.0  | 
| (Read a, Read b, Read c) => Read (a, b, c) | Since: base-2.1  | 
| Read a => Read (Const a b) | This instance would be equivalent to the derived instances of the
  Since: base-4.8.0.0  | 
| Read c => Read (K1 i c p) | Since: base-4.7.0.0  | 
| (Read (f p), Read (g p)) => Read ((f :+: g) p) | Since: base-4.7.0.0  | 
| (Read (f p), Read (g p)) => Read ((f :*: g) p) | Since: base-4.7.0.0  | 
| (Read a, Read b, Read c, Read d) => Read (a, b, c, d) | Since: base-2.1  | 
| (Read1 f, Read1 g, Read a) => Read (Product f g a) | Since: base-4.9.0.0  | 
| (Read1 f, Read1 g, Read a) => Read (Sum f g a) | Since: base-4.9.0.0  | 
| Read (f p) => Read (M1 i c f p) | Since: base-4.7.0.0  | 
| Read (f (g p)) => Read ((f :.: g) p) | Since: base-4.7.0.0  | 
| (Read a, Read b, Read c, Read d, Read e) => Read (a, b, c, d, e) | Since: base-2.1  | 
| (Read1 f, Read1 g, Read a) => Read (Compose f g a) | Since: base-4.9.0.0  | 
| (Read a, Read b, Read c, Read d, Read e, Read f) => Read (a, b, c, d, e, f) | Since: base-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: base-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: base-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: base-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: base-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: base-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: base-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: base-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: base-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: base-2.1  | 
Defined in GHC.Read  | |
class (Num a, Ord a) => Real a where #
Methods
toRational :: a -> Rational #
the rational equivalent of its real argument with full precision
Instances
| Real Int | Since: base-2.0.1  | 
Defined in GHC.Real Methods toRational :: Int -> Rational #  | |
| Real Int8 | Since: base-2.1  | 
Defined in GHC.Int Methods toRational :: Int8 -> Rational #  | |
| Real Int16 | Since: base-2.1  | 
Defined in GHC.Int Methods toRational :: Int16 -> Rational #  | |
| Real Int32 | Since: base-2.1  | 
Defined in GHC.Int Methods toRational :: Int32 -> Rational #  | |
| Real Int64 | Since: base-2.1  | 
Defined in GHC.Int Methods toRational :: Int64 -> Rational #  | |
| Real Integer | Since: base-2.0.1  | 
Defined in GHC.Real Methods toRational :: Integer -> Rational #  | |
| Real Natural | Since: base-4.8.0.0  | 
Defined in GHC.Real Methods toRational :: Natural -> Rational #  | |
| Real Word | Since: base-2.1  | 
Defined in GHC.Real Methods toRational :: Word -> Rational #  | |
| Real Word8 | Since: base-2.1  | 
Defined in GHC.Word Methods toRational :: Word8 -> Rational #  | |
| Real Word16 | Since: base-2.1  | 
Defined in GHC.Word Methods toRational :: Word16 -> Rational #  | |
| Real Word32 | Since: base-2.1  | 
Defined in GHC.Word Methods toRational :: Word32 -> Rational #  | |
| Real Word64 | Since: base-2.1  | 
Defined in GHC.Word Methods toRational :: Word64 -> Rational #  | |
| Real WordPtr | |
Defined in Foreign.Ptr Methods toRational :: WordPtr -> Rational #  | |
| Real IntPtr | |
Defined in Foreign.Ptr Methods toRational :: IntPtr -> Rational #  | |
| Integral a => Real (Ratio a) | Since: base-2.0.1  | 
Defined in GHC.Real Methods toRational :: Ratio a -> Rational #  | |
| Real a => Real (Identity a) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Identity Methods toRational :: Identity a -> Rational #  | |
| Real a => Real (Down a) | Since: base-4.14.0.0  | 
Defined in Data.Ord Methods toRational :: Down a -> Rational #  | |
| HasResolution a => Real (Fixed a) | Since: base-2.1  | 
Defined in Data.Fixed Methods toRational :: Fixed a -> Rational #  | |
| Real a => Real (Const a b) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Const Methods toRational :: Const a b -> Rational #  | |
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.
Instances
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
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
class Monad m => MonadFail (m :: Type -> Type) where #
When a value is bound in do-notation, the pattern on the left
 hand side of <- might not match. In this case, this class
 provides a function to recover.
A Monad without a MonadFail instance may only be used in conjunction
 with pattern that always match, such as newtypes, tuples, data types with
 only a single data constructor, and irrefutable patterns (~pat).
Instances of MonadFail should satisfy the following law: fail s should
 be a left zero for >>=,
fail s >>= f = fail s
If your Monad is also MonadPlus, a popular definition is
fail _ = mzero
Since: base-4.9.0.0
Instances
| MonadFail [] | Since: base-4.9.0.0  | 
Defined in Control.Monad.Fail  | |
| MonadFail Maybe | Since: base-4.9.0.0  | 
Defined in Control.Monad.Fail  | |
| MonadFail IO | Since: base-4.9.0.0  | 
Defined in Control.Monad.Fail  | |
| MonadFail ReadP | Since: base-4.9.0.0  | 
Defined in Text.ParserCombinators.ReadP  | |
| MonadFail P | Since: base-4.9.0.0  | 
Defined in Text.ParserCombinators.ReadP  | |
| MonadFail m => MonadFail (StateT s m) | |
Defined in Control.Monad.Trans.State.Strict  | |
class Functor f => Applicative (f :: Type -> Type) 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:
(<*>) =liftA2id
liftA2f 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.
Using ApplicativeDo: 'fs ' can be understood as
 the <*> asdo expression
do f <- fs a <- as pure (f a)
(*>) :: f a -> f b -> f b infixl 4 #
Sequence actions, discarding the value of the first argument.
'as ' can be understood as the *> bsdo expression
do as bs
This is a tad complicated for our ApplicativeDo extension
 which will give it a Monad constraint. For an Applicative
 constraint we write it of the form
do _ <- as b <- bs pure b
(<*) :: f a -> f b -> f a infixl 4 #
Sequence actions, discarding the value of the second argument.
Using ApplicativeDo: 'as ' can be understood as
 the <* bsdo expression
do a <- as bs pure a
Instances
| Applicative [] | Since: base-2.1  | 
| Applicative Maybe | Since: base-2.1  | 
| Applicative IO | Since: base-2.1  | 
| Applicative Par1 | Since: base-4.9.0.0  | 
| Applicative Complex | Since: base-4.9.0.0  | 
| Applicative Min | Since: base-4.9.0.0  | 
| Applicative Max | Since: base-4.9.0.0  | 
| Applicative First | Since: base-4.9.0.0  | 
| Applicative Last | Since: base-4.9.0.0  | 
| Applicative Option | Since: base-4.9.0.0  | 
| Applicative ZipList | f <$> ZipList xs1 <*> ... <*> ZipList xsN
    = ZipList (zipWithN f xs1 ... xsN)where  (\a b c -> stimes c [a, b]) <$> ZipList "abcd" <*> ZipList "567" <*> ZipList [1..]
    = ZipList (zipWith3 (\a b c -> stimes c [a, b]) "abcd" "567" [1..])
    = ZipList {getZipList = ["a5","b6b6","c7c7c7"]}Since: base-2.1  | 
| Applicative Identity | Since: base-4.8.0.0  | 
| Applicative STM | Since: base-4.8.0.0  | 
| Applicative Down | Since: base-4.11.0.0  | 
| Applicative ReadP | Since: base-4.6.0.0  | 
| Applicative NonEmpty | Since: base-4.9.0.0  | 
| Applicative Tree | |
| Applicative Seq | Since: containers-0.5.4  | 
| Applicative P | Since: base-4.5.0.0  | 
| Applicative (Either e) | Since: base-3.0  | 
| Applicative (U1 :: Type -> Type) | Since: base-4.9.0.0  | 
| Monoid a => Applicative ((,) a) | For tuples, the  ("hello ", (+15)) <*> ("world!", 2002)
("hello world!",2017)Since: base-2.1  | 
| Monad m => Applicative (WrappedMonad m) | Since: base-2.1  | 
Defined in Control.Applicative Methods pure :: a -> WrappedMonad m a # (<*>) :: WrappedMonad m (a -> b) -> WrappedMonad m a -> WrappedMonad m b # liftA2 :: (a -> b -> c) -> WrappedMonad m a -> WrappedMonad m b -> WrappedMonad m c # (*>) :: WrappedMonad m a -> WrappedMonad m b -> WrappedMonad m b # (<*) :: WrappedMonad m a -> WrappedMonad m b -> WrappedMonad m a #  | |
| Applicative (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
| Applicative (SetM s) | |
| Applicative f => Applicative (Rec1 f) | Since: base-4.9.0.0  | 
| (Monoid a, Monoid b) => Applicative ((,,) a b) | Since: base-4.14.0.0  | 
| Arrow a => Applicative (WrappedArrow a b) | Since: base-2.1  | 
Defined in Control.Applicative Methods pure :: a0 -> WrappedArrow a b a0 # (<*>) :: WrappedArrow a b (a0 -> b0) -> WrappedArrow a b a0 -> WrappedArrow a b b0 # liftA2 :: (a0 -> b0 -> c) -> WrappedArrow a b a0 -> WrappedArrow a b b0 -> WrappedArrow a b c # (*>) :: WrappedArrow a b a0 -> WrappedArrow a b b0 -> WrappedArrow a b b0 # (<*) :: WrappedArrow a b a0 -> WrappedArrow a b b0 -> WrappedArrow a b a0 #  | |
| Monoid m => Applicative (Const m :: Type -> Type) | Since: base-2.0.1  | 
| (Applicative f, Monad f) => Applicative (WhenMissing f x) | Equivalent to  Since: containers-0.5.9  | 
Defined in Data.IntMap.Internal Methods pure :: a -> WhenMissing f x a # (<*>) :: WhenMissing f x (a -> b) -> WhenMissing f x a -> WhenMissing f x b # liftA2 :: (a -> b -> c) -> WhenMissing f x a -> WhenMissing f x b -> WhenMissing f x c # (*>) :: WhenMissing f x a -> WhenMissing f x b -> WhenMissing f x b # (<*) :: WhenMissing f x a -> WhenMissing f x b -> WhenMissing f x a #  | |
| (Functor m, Monad m) => Applicative (StateT s m) | |
Defined in Control.Monad.Trans.State.Strict  | |
| Applicative ((->) r :: Type -> Type) | Since: base-2.1  | 
| Monoid c => Applicative (K1 i c :: Type -> Type) | Since: base-4.12.0.0  | 
| (Applicative f, Applicative g) => Applicative (f :*: g) | Since: base-4.9.0.0  | 
| (Monoid a, Monoid b, Monoid c) => Applicative ((,,,) a b c) | Since: base-4.14.0.0  | 
Defined in GHC.Base  | |
| (Applicative f, Applicative g) => Applicative (Product f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Product  | |
| (Monad f, Applicative f) => Applicative (WhenMatched f x y) | Equivalent to  Since: containers-0.5.9  | 
Defined in Data.IntMap.Internal Methods pure :: a -> WhenMatched f x y a # (<*>) :: WhenMatched f x y (a -> b) -> WhenMatched f x y a -> WhenMatched f x y b # liftA2 :: (a -> b -> c) -> WhenMatched f x y a -> WhenMatched f x y b -> WhenMatched f x y c # (*>) :: WhenMatched f x y a -> WhenMatched f x y b -> WhenMatched f x y b # (<*) :: WhenMatched f x y a -> WhenMatched f x y b -> WhenMatched f x y a #  | |
| (Applicative f, Monad f) => Applicative (WhenMissing f k x) | Equivalent to  Since: containers-0.5.9  | 
Defined in Data.Map.Internal Methods pure :: a -> WhenMissing f k x a # (<*>) :: WhenMissing f k x (a -> b) -> WhenMissing f k x a -> WhenMissing f k x b # liftA2 :: (a -> b -> c) -> WhenMissing f k x a -> WhenMissing f k x b -> WhenMissing f k x c # (*>) :: WhenMissing f k x a -> WhenMissing f k x b -> WhenMissing f k x b # (<*) :: WhenMissing f k x a -> WhenMissing f k x b -> WhenMissing f k x a #  | |
| Applicative f => Applicative (M1 i c f) | Since: base-4.9.0.0  | 
| (Applicative f, Applicative g) => Applicative (f :.: g) | Since: base-4.9.0.0  | 
| (Applicative f, Applicative g) => Applicative (Compose f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Compose  | |
| (Monad f, Applicative f) => Applicative (WhenMatched f k x y) | Equivalent to  Since: containers-0.5.9  | 
Defined in Data.Map.Internal Methods pure :: a -> WhenMatched f k x y a # (<*>) :: WhenMatched f k x y (a -> b) -> WhenMatched f k x y a -> WhenMatched f k x y b # liftA2 :: (a -> b -> c) -> WhenMatched f k x y a -> WhenMatched f k x y b -> WhenMatched f k x y c # (*>) :: WhenMatched f k x y a -> WhenMatched f k x y b -> WhenMatched f k x y b # (<*) :: WhenMatched f k x y a -> WhenMatched f k x y b -> WhenMatched f k x y a #  | |
class Foldable (t :: Type -> Type) where #
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
length = getSum . foldMap (Sum . const 1)
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.
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.
Since: base-4.8.0.0
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.
Since: base-4.8.0.0
elem :: Eq a => a -> t a -> Bool infix 4 #
Does the element occur in the structure?
Since: base-4.8.0.0
maximum :: Ord a => t a -> a #
The largest element of a non-empty structure.
Since: base-4.8.0.0
minimum :: Ord a => t a -> a #
The least element of a non-empty structure.
Since: base-4.8.0.0
The sum function computes the sum of the numbers of a structure.
Since: base-4.8.0.0
product :: Num a => t a -> a #
The product function computes the product of the numbers of a
 structure.
Since: base-4.8.0.0
Instances
| Foldable [] | Since: base-2.1  | 
Defined in Data.Foldable Methods fold :: Monoid m => [m] -> m # foldMap :: Monoid m => (a -> m) -> [a] -> m # foldMap' :: Monoid m => (a -> m) -> [a] -> m # foldr :: (a -> b -> b) -> b -> [a] -> b # foldr' :: (a -> b -> b) -> b -> [a] -> b # foldl :: (b -> a -> b) -> b -> [a] -> b # foldl' :: (b -> a -> b) -> b -> [a] -> b # foldr1 :: (a -> a -> a) -> [a] -> a # foldl1 :: (a -> a -> a) -> [a] -> a # elem :: Eq a => a -> [a] -> Bool # maximum :: Ord a => [a] -> a #  | |
| Foldable Maybe | Since: base-2.1  | 
Defined in Data.Foldable Methods fold :: Monoid m => Maybe m -> m # foldMap :: Monoid m => (a -> m) -> Maybe a -> m # foldMap' :: Monoid m => (a -> m) -> Maybe a -> m # foldr :: (a -> b -> b) -> b -> Maybe a -> b # foldr' :: (a -> b -> b) -> b -> Maybe a -> b # foldl :: (b -> a -> b) -> b -> Maybe a -> b # foldl' :: (b -> a -> b) -> b -> Maybe a -> b # foldr1 :: (a -> a -> a) -> Maybe a -> a # foldl1 :: (a -> a -> a) -> Maybe a -> a # elem :: Eq a => a -> Maybe a -> Bool # maximum :: Ord a => Maybe a -> a # minimum :: Ord a => Maybe a -> a #  | |
| Foldable Par1 | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Par1 m -> m # foldMap :: Monoid m => (a -> m) -> Par1 a -> m # foldMap' :: Monoid m => (a -> m) -> Par1 a -> m # foldr :: (a -> b -> b) -> b -> Par1 a -> b # foldr' :: (a -> b -> b) -> b -> Par1 a -> b # foldl :: (b -> a -> b) -> b -> Par1 a -> b # foldl' :: (b -> a -> b) -> b -> Par1 a -> b # foldr1 :: (a -> a -> a) -> Par1 a -> a # foldl1 :: (a -> a -> a) -> Par1 a -> a # elem :: Eq a => a -> Par1 a -> Bool # maximum :: Ord a => Par1 a -> a #  | |
| Foldable Complex | Since: base-4.9.0.0  | 
Defined in Data.Complex Methods fold :: Monoid m => Complex m -> m # foldMap :: Monoid m => (a -> m) -> Complex a -> m # foldMap' :: Monoid m => (a -> m) -> Complex a -> m # foldr :: (a -> b -> b) -> b -> Complex a -> b # foldr' :: (a -> b -> b) -> b -> Complex a -> b # foldl :: (b -> a -> b) -> b -> Complex a -> b # foldl' :: (b -> a -> b) -> b -> Complex a -> b # foldr1 :: (a -> a -> a) -> Complex a -> a # foldl1 :: (a -> a -> a) -> Complex a -> a # elem :: Eq a => a -> Complex a -> Bool # maximum :: Ord a => Complex a -> a # minimum :: Ord a => Complex a -> a #  | |
| Foldable Min | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Min m -> m # foldMap :: Monoid m => (a -> m) -> Min a -> m # foldMap' :: Monoid m => (a -> m) -> Min a -> m # foldr :: (a -> b -> b) -> b -> Min a -> b # foldr' :: (a -> b -> b) -> b -> Min a -> b # foldl :: (b -> a -> b) -> b -> Min a -> b # foldl' :: (b -> a -> b) -> b -> Min a -> b # foldr1 :: (a -> a -> a) -> Min a -> a # foldl1 :: (a -> a -> a) -> Min a -> a # elem :: Eq a => a -> Min a -> Bool # maximum :: Ord a => Min a -> a #  | |
| Foldable Max | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Max m -> m # foldMap :: Monoid m => (a -> m) -> Max a -> m # foldMap' :: Monoid m => (a -> m) -> Max a -> m # foldr :: (a -> b -> b) -> b -> Max a -> b # foldr' :: (a -> b -> b) -> b -> Max a -> b # foldl :: (b -> a -> b) -> b -> Max a -> b # foldl' :: (b -> a -> b) -> b -> Max a -> b # foldr1 :: (a -> a -> a) -> Max a -> a # foldl1 :: (a -> a -> a) -> Max a -> a # elem :: Eq a => a -> Max a -> Bool # maximum :: Ord a => Max a -> a #  | |
| Foldable First | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => First m -> m # foldMap :: Monoid m => (a -> m) -> First a -> m # foldMap' :: Monoid m => (a -> m) -> First a -> m # foldr :: (a -> b -> b) -> b -> First a -> b # foldr' :: (a -> b -> b) -> b -> First a -> b # foldl :: (b -> a -> b) -> b -> First a -> b # foldl' :: (b -> a -> b) -> b -> First a -> b # foldr1 :: (a -> a -> a) -> First a -> a # foldl1 :: (a -> a -> a) -> First a -> a # elem :: Eq a => a -> First a -> Bool # maximum :: Ord a => First a -> a # minimum :: Ord a => First a -> a #  | |
| Foldable Last | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Last m -> m # foldMap :: Monoid m => (a -> m) -> Last a -> m # foldMap' :: Monoid m => (a -> m) -> Last a -> m # foldr :: (a -> b -> b) -> b -> Last a -> b # foldr' :: (a -> b -> b) -> b -> Last a -> b # foldl :: (b -> a -> b) -> b -> Last a -> b # foldl' :: (b -> a -> b) -> b -> Last a -> b # foldr1 :: (a -> a -> a) -> Last a -> a # foldl1 :: (a -> a -> a) -> Last a -> a # elem :: Eq a => a -> Last a -> Bool # maximum :: Ord a => Last a -> a #  | |
| Foldable Option | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Option m -> m # foldMap :: Monoid m => (a -> m) -> Option a -> m # foldMap' :: Monoid m => (a -> m) -> Option a -> m # foldr :: (a -> b -> b) -> b -> Option a -> b # foldr' :: (a -> b -> b) -> b -> Option a -> b # foldl :: (b -> a -> b) -> b -> Option a -> b # foldl' :: (b -> a -> b) -> b -> Option a -> b # foldr1 :: (a -> a -> a) -> Option a -> a # foldl1 :: (a -> a -> a) -> Option a -> a # elem :: Eq a => a -> Option a -> Bool # maximum :: Ord a => Option a -> a # minimum :: Ord a => Option a -> a #  | |
| Foldable ZipList | Since: base-4.9.0.0  | 
Defined in Control.Applicative Methods fold :: Monoid m => ZipList m -> m # foldMap :: Monoid m => (a -> m) -> ZipList a -> m # foldMap' :: Monoid m => (a -> m) -> ZipList a -> m # foldr :: (a -> b -> b) -> b -> ZipList a -> b # foldr' :: (a -> b -> b) -> b -> ZipList a -> b # foldl :: (b -> a -> b) -> b -> ZipList a -> b # foldl' :: (b -> a -> b) -> b -> ZipList a -> b # foldr1 :: (a -> a -> a) -> ZipList a -> a # foldl1 :: (a -> a -> a) -> ZipList a -> a # elem :: Eq a => a -> ZipList a -> Bool # maximum :: Ord a => ZipList a -> a # minimum :: Ord a => ZipList a -> a #  | |
| Foldable Identity | Since: base-4.8.0.0  | 
Defined in Data.Functor.Identity Methods fold :: Monoid m => Identity m -> m # foldMap :: Monoid m => (a -> m) -> Identity a -> m # foldMap' :: Monoid m => (a -> m) -> Identity a -> m # foldr :: (a -> b -> b) -> b -> Identity a -> b # foldr' :: (a -> b -> b) -> b -> Identity a -> b # foldl :: (b -> a -> b) -> b -> Identity a -> b # foldl' :: (b -> a -> b) -> b -> Identity a -> b # foldr1 :: (a -> a -> a) -> Identity a -> a # foldl1 :: (a -> a -> a) -> Identity a -> a # elem :: Eq a => a -> Identity a -> Bool # maximum :: Ord a => Identity a -> a # minimum :: Ord a => Identity a -> a #  | |
| Foldable First | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => First m -> m # foldMap :: Monoid m => (a -> m) -> First a -> m # foldMap' :: Monoid m => (a -> m) -> First a -> m # foldr :: (a -> b -> b) -> b -> First a -> b # foldr' :: (a -> b -> b) -> b -> First a -> b # foldl :: (b -> a -> b) -> b -> First a -> b # foldl' :: (b -> a -> b) -> b -> First a -> b # foldr1 :: (a -> a -> a) -> First a -> a # foldl1 :: (a -> a -> a) -> First a -> a # elem :: Eq a => a -> First a -> Bool # maximum :: Ord a => First a -> a # minimum :: Ord a => First a -> a #  | |
| Foldable Last | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Last m -> m # foldMap :: Monoid m => (a -> m) -> Last a -> m # foldMap' :: Monoid m => (a -> m) -> Last a -> m # foldr :: (a -> b -> b) -> b -> Last a -> b # foldr' :: (a -> b -> b) -> b -> Last a -> b # foldl :: (b -> a -> b) -> b -> Last a -> b # foldl' :: (b -> a -> b) -> b -> Last a -> b # foldr1 :: (a -> a -> a) -> Last a -> a # foldl1 :: (a -> a -> a) -> Last a -> a # elem :: Eq a => a -> Last a -> Bool # maximum :: Ord a => Last a -> a #  | |
| Foldable Dual | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Dual m -> m # foldMap :: Monoid m => (a -> m) -> Dual a -> m # foldMap' :: Monoid m => (a -> m) -> Dual a -> m # foldr :: (a -> b -> b) -> b -> Dual a -> b # foldr' :: (a -> b -> b) -> b -> Dual a -> b # foldl :: (b -> a -> b) -> b -> Dual a -> b # foldl' :: (b -> a -> b) -> b -> Dual a -> b # foldr1 :: (a -> a -> a) -> Dual a -> a # foldl1 :: (a -> a -> a) -> Dual a -> a # elem :: Eq a => a -> Dual a -> Bool # maximum :: Ord a => Dual a -> a #  | |
| Foldable Sum | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Sum m -> m # foldMap :: Monoid m => (a -> m) -> Sum a -> m # foldMap' :: Monoid m => (a -> m) -> Sum a -> m # foldr :: (a -> b -> b) -> b -> Sum a -> b # foldr' :: (a -> b -> b) -> b -> Sum a -> b # foldl :: (b -> a -> b) -> b -> Sum a -> b # foldl' :: (b -> a -> b) -> b -> Sum a -> b # foldr1 :: (a -> a -> a) -> Sum a -> a # foldl1 :: (a -> a -> a) -> Sum a -> a # elem :: Eq a => a -> Sum a -> Bool # maximum :: Ord a => Sum a -> a #  | |
| Foldable Product | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Product m -> m # foldMap :: Monoid m => (a -> m) -> Product a -> m # foldMap' :: Monoid m => (a -> m) -> Product a -> m # foldr :: (a -> b -> b) -> b -> Product a -> b # foldr' :: (a -> b -> b) -> b -> Product a -> b # foldl :: (b -> a -> b) -> b -> Product a -> b # foldl' :: (b -> a -> b) -> b -> Product a -> b # foldr1 :: (a -> a -> a) -> Product a -> a # foldl1 :: (a -> a -> a) -> Product a -> a # elem :: Eq a => a -> Product a -> Bool # maximum :: Ord a => Product a -> a # minimum :: Ord a => Product a -> a #  | |
| Foldable Down | Since: base-4.12.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Down m -> m # foldMap :: Monoid m => (a -> m) -> Down a -> m # foldMap' :: Monoid m => (a -> m) -> Down a -> m # foldr :: (a -> b -> b) -> b -> Down a -> b # foldr' :: (a -> b -> b) -> b -> Down a -> b # foldl :: (b -> a -> b) -> b -> Down a -> b # foldl' :: (b -> a -> b) -> b -> Down a -> b # foldr1 :: (a -> a -> a) -> Down a -> a # foldl1 :: (a -> a -> a) -> Down a -> a # elem :: Eq a => a -> Down a -> Bool # maximum :: Ord a => Down a -> a #  | |
| Foldable NonEmpty | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => NonEmpty m -> m # foldMap :: Monoid m => (a -> m) -> NonEmpty a -> m # foldMap' :: Monoid m => (a -> m) -> NonEmpty a -> m # foldr :: (a -> b -> b) -> b -> NonEmpty a -> b # foldr' :: (a -> b -> b) -> b -> NonEmpty a -> b # foldl :: (b -> a -> b) -> b -> NonEmpty a -> b # foldl' :: (b -> a -> b) -> b -> NonEmpty a -> b # foldr1 :: (a -> a -> a) -> NonEmpty a -> a # foldl1 :: (a -> a -> a) -> NonEmpty a -> a # elem :: Eq a => a -> NonEmpty a -> Bool # maximum :: Ord a => NonEmpty a -> a # minimum :: Ord a => NonEmpty a -> a #  | |
| Foldable IntMap | Folds in order of increasing key.  | 
Defined in Data.IntMap.Internal Methods fold :: Monoid m => IntMap m -> m # foldMap :: Monoid m => (a -> m) -> IntMap a -> m # foldMap' :: Monoid m => (a -> m) -> IntMap a -> m # foldr :: (a -> b -> b) -> b -> IntMap a -> b # foldr' :: (a -> b -> b) -> b -> IntMap a -> b # foldl :: (b -> a -> b) -> b -> IntMap a -> b # foldl' :: (b -> a -> b) -> b -> IntMap a -> b # foldr1 :: (a -> a -> a) -> IntMap a -> a # foldl1 :: (a -> a -> a) -> IntMap a -> a # elem :: Eq a => a -> IntMap a -> Bool # maximum :: Ord a => IntMap a -> a # minimum :: Ord a => IntMap a -> a #  | |
| Foldable SCC | Since: containers-0.5.9  | 
Defined in Data.Graph Methods fold :: Monoid m => SCC m -> m # foldMap :: Monoid m => (a -> m) -> SCC a -> m # foldMap' :: Monoid m => (a -> m) -> SCC a -> m # foldr :: (a -> b -> b) -> b -> SCC a -> b # foldr' :: (a -> b -> b) -> b -> SCC a -> b # foldl :: (b -> a -> b) -> b -> SCC a -> b # foldl' :: (b -> a -> b) -> b -> SCC a -> b # foldr1 :: (a -> a -> a) -> SCC a -> a # foldl1 :: (a -> a -> a) -> SCC a -> a # elem :: Eq a => a -> SCC a -> Bool # maximum :: Ord a => SCC a -> a #  | |
| Foldable Tree | |
Defined in Data.Tree Methods fold :: Monoid m => Tree m -> m # foldMap :: Monoid m => (a -> m) -> Tree a -> m # foldMap' :: Monoid m => (a -> m) -> Tree a -> m # foldr :: (a -> b -> b) -> b -> Tree a -> b # foldr' :: (a -> b -> b) -> b -> Tree a -> b # foldl :: (b -> a -> b) -> b -> Tree a -> b # foldl' :: (b -> a -> b) -> b -> Tree a -> b # foldr1 :: (a -> a -> a) -> Tree a -> a # foldl1 :: (a -> a -> a) -> Tree a -> a # elem :: Eq a => a -> Tree a -> Bool # maximum :: Ord a => Tree a -> a #  | |
| Foldable Seq | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => Seq m -> m # foldMap :: Monoid m => (a -> m) -> Seq a -> m # foldMap' :: Monoid m => (a -> m) -> Seq a -> m # foldr :: (a -> b -> b) -> b -> Seq a -> b # foldr' :: (a -> b -> b) -> b -> Seq a -> b # foldl :: (b -> a -> b) -> b -> Seq a -> b # foldl' :: (b -> a -> b) -> b -> Seq a -> b # foldr1 :: (a -> a -> a) -> Seq a -> a # foldl1 :: (a -> a -> a) -> Seq a -> a # elem :: Eq a => a -> Seq a -> Bool # maximum :: Ord a => Seq a -> a #  | |
| Foldable FingerTree | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => FingerTree m -> m # foldMap :: Monoid m => (a -> m) -> FingerTree a -> m # foldMap' :: Monoid m => (a -> m) -> FingerTree a -> m # foldr :: (a -> b -> b) -> b -> FingerTree a -> b # foldr' :: (a -> b -> b) -> b -> FingerTree a -> b # foldl :: (b -> a -> b) -> b -> FingerTree a -> b # foldl' :: (b -> a -> b) -> b -> FingerTree a -> b # foldr1 :: (a -> a -> a) -> FingerTree a -> a # foldl1 :: (a -> a -> a) -> FingerTree a -> a # toList :: FingerTree a -> [a] # null :: FingerTree a -> Bool # length :: FingerTree a -> Int # elem :: Eq a => a -> FingerTree a -> Bool # maximum :: Ord a => FingerTree a -> a # minimum :: Ord a => FingerTree a -> a # sum :: Num a => FingerTree a -> a # product :: Num a => FingerTree a -> a #  | |
| Foldable Digit | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => Digit m -> m # foldMap :: Monoid m => (a -> m) -> Digit a -> m # foldMap' :: Monoid m => (a -> m) -> Digit a -> m # foldr :: (a -> b -> b) -> b -> Digit a -> b # foldr' :: (a -> b -> b) -> b -> Digit a -> b # foldl :: (b -> a -> b) -> b -> Digit a -> b # foldl' :: (b -> a -> b) -> b -> Digit a -> b # foldr1 :: (a -> a -> a) -> Digit a -> a # foldl1 :: (a -> a -> a) -> Digit a -> a # elem :: Eq a => a -> Digit a -> Bool # maximum :: Ord a => Digit a -> a # minimum :: Ord a => Digit a -> a #  | |
| Foldable Node | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => Node m -> m # foldMap :: Monoid m => (a -> m) -> Node a -> m # foldMap' :: Monoid m => (a -> m) -> Node a -> m # foldr :: (a -> b -> b) -> b -> Node a -> b # foldr' :: (a -> b -> b) -> b -> Node a -> b # foldl :: (b -> a -> b) -> b -> Node a -> b # foldl' :: (b -> a -> b) -> b -> Node a -> b # foldr1 :: (a -> a -> a) -> Node a -> a # foldl1 :: (a -> a -> a) -> Node a -> a # elem :: Eq a => a -> Node a -> Bool # maximum :: Ord a => Node a -> a #  | |
| Foldable Elem | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => Elem m -> m # foldMap :: Monoid m => (a -> m) -> Elem a -> m # foldMap' :: Monoid m => (a -> m) -> Elem a -> m # foldr :: (a -> b -> b) -> b -> Elem a -> b # foldr' :: (a -> b -> b) -> b -> Elem a -> b # foldl :: (b -> a -> b) -> b -> Elem a -> b # foldl' :: (b -> a -> b) -> b -> Elem a -> b # foldr1 :: (a -> a -> a) -> Elem a -> a # foldl1 :: (a -> a -> a) -> Elem a -> a # elem :: Eq a => a -> Elem a -> Bool # maximum :: Ord a => Elem a -> a #  | |
| Foldable ViewL | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => ViewL m -> m # foldMap :: Monoid m => (a -> m) -> ViewL a -> m # foldMap' :: Monoid m => (a -> m) -> ViewL a -> m # foldr :: (a -> b -> b) -> b -> ViewL a -> b # foldr' :: (a -> b -> b) -> b -> ViewL a -> b # foldl :: (b -> a -> b) -> b -> ViewL a -> b # foldl' :: (b -> a -> b) -> b -> ViewL a -> b # foldr1 :: (a -> a -> a) -> ViewL a -> a # foldl1 :: (a -> a -> a) -> ViewL a -> a # elem :: Eq a => a -> ViewL a -> Bool # maximum :: Ord a => ViewL a -> a # minimum :: Ord a => ViewL a -> a #  | |
| Foldable ViewR | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => ViewR m -> m # foldMap :: Monoid m => (a -> m) -> ViewR a -> m # foldMap' :: Monoid m => (a -> m) -> ViewR a -> m # foldr :: (a -> b -> b) -> b -> ViewR a -> b # foldr' :: (a -> b -> b) -> b -> ViewR a -> b # foldl :: (b -> a -> b) -> b -> ViewR a -> b # foldl' :: (b -> a -> b) -> b -> ViewR a -> b # foldr1 :: (a -> a -> a) -> ViewR a -> a # foldl1 :: (a -> a -> a) -> ViewR a -> a # elem :: Eq a => a -> ViewR a -> Bool # maximum :: Ord a => ViewR a -> a # minimum :: Ord a => ViewR a -> a #  | |
| Foldable Set | Folds in order of increasing key.  | 
Defined in Data.Set.Internal Methods fold :: Monoid m => Set m -> m # foldMap :: Monoid m => (a -> m) -> Set a -> m # foldMap' :: Monoid m => (a -> m) -> Set a -> m # foldr :: (a -> b -> b) -> b -> Set a -> b # foldr' :: (a -> b -> b) -> b -> Set a -> b # foldl :: (b -> a -> b) -> b -> Set a -> b # foldl' :: (b -> a -> b) -> b -> Set a -> b # foldr1 :: (a -> a -> a) -> Set a -> a # foldl1 :: (a -> a -> a) -> Set a -> a # elem :: Eq a => a -> Set a -> Bool # maximum :: Ord a => Set a -> a #  | |
| Foldable Hashed | |
Defined in Data.Hashable.Class Methods fold :: Monoid m => Hashed m -> m # foldMap :: Monoid m => (a -> m) -> Hashed a -> m # foldMap' :: Monoid m => (a -> m) -> Hashed a -> m # foldr :: (a -> b -> b) -> b -> Hashed a -> b # foldr' :: (a -> b -> b) -> b -> Hashed a -> b # foldl :: (b -> a -> b) -> b -> Hashed a -> b # foldl' :: (b -> a -> b) -> b -> Hashed a -> b # foldr1 :: (a -> a -> a) -> Hashed a -> a # foldl1 :: (a -> a -> a) -> Hashed a -> a # elem :: Eq a => a -> Hashed a -> Bool # maximum :: Ord a => Hashed a -> a # minimum :: Ord a => Hashed a -> a #  | |
| Foldable HashSet | |
Defined in Data.HashSet.Internal Methods fold :: Monoid m => HashSet m -> m # foldMap :: Monoid m => (a -> m) -> HashSet a -> m # foldMap' :: Monoid m => (a -> m) -> HashSet a -> m # foldr :: (a -> b -> b) -> b -> HashSet a -> b # foldr' :: (a -> b -> b) -> b -> HashSet a -> b # foldl :: (b -> a -> b) -> b -> HashSet a -> b # foldl' :: (b -> a -> b) -> b -> HashSet a -> b # foldr1 :: (a -> a -> a) -> HashSet a -> a # foldl1 :: (a -> a -> a) -> HashSet a -> a # elem :: Eq a => a -> HashSet a -> Bool # maximum :: Ord a => HashSet a -> a # minimum :: Ord a => HashSet a -> a #  | |
| Foldable StateArray Source # | |
Defined in Language.Lexer.Tlex.Machine.State Methods fold :: Monoid m => StateArray m -> m # foldMap :: Monoid m => (a -> m) -> StateArray a -> m # foldMap' :: Monoid m => (a -> m) -> StateArray a -> m # foldr :: (a -> b -> b) -> b -> StateArray a -> b # foldr' :: (a -> b -> b) -> b -> StateArray a -> b # foldl :: (b -> a -> b) -> b -> StateArray a -> b # foldl' :: (b -> a -> b) -> b -> StateArray a -> b # foldr1 :: (a -> a -> a) -> StateArray a -> a # foldl1 :: (a -> a -> a) -> StateArray a -> a # toList :: StateArray a -> [a] # null :: StateArray a -> Bool # length :: StateArray a -> Int # elem :: Eq a => a -> StateArray a -> Bool # maximum :: Ord a => StateArray a -> a # minimum :: Ord a => StateArray a -> a # sum :: Num a => StateArray a -> a # product :: Num a => StateArray a -> a #  | |
| Foldable Bag Source # | |
Defined in Language.Lexer.Tlex.Data.Bag Methods fold :: Monoid m => Bag m -> m # foldMap :: Monoid m => (a -> m) -> Bag a -> m # foldMap' :: Monoid m => (a -> m) -> Bag a -> m # foldr :: (a -> b -> b) -> b -> Bag a -> b # foldr' :: (a -> b -> b) -> b -> Bag a -> b # foldl :: (b -> a -> b) -> b -> Bag a -> b # foldl' :: (b -> a -> b) -> b -> Bag a -> b # foldr1 :: (a -> a -> a) -> Bag a -> a # foldl1 :: (a -> a -> a) -> Bag a -> a # elem :: Eq a => a -> Bag a -> Bool # maximum :: Ord a => Bag a -> a #  | |
| Foldable (Either a) | Since: base-4.7.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Either a m -> m # foldMap :: Monoid m => (a0 -> m) -> Either a a0 -> m # foldMap' :: Monoid m => (a0 -> m) -> Either a a0 -> m # foldr :: (a0 -> b -> b) -> b -> Either a a0 -> b # foldr' :: (a0 -> b -> b) -> b -> Either a a0 -> b # foldl :: (b -> a0 -> b) -> b -> Either a a0 -> b # foldl' :: (b -> a0 -> b) -> b -> Either a a0 -> b # foldr1 :: (a0 -> a0 -> a0) -> Either a a0 -> a0 # foldl1 :: (a0 -> a0 -> a0) -> Either a a0 -> a0 # toList :: Either a a0 -> [a0] # length :: Either a a0 -> Int # elem :: Eq a0 => a0 -> Either a a0 -> Bool # maximum :: Ord a0 => Either a a0 -> a0 # minimum :: Ord a0 => Either a a0 -> a0 #  | |
| Foldable (V1 :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => V1 m -> m # foldMap :: Monoid m => (a -> m) -> V1 a -> m # foldMap' :: Monoid m => (a -> m) -> V1 a -> m # foldr :: (a -> b -> b) -> b -> V1 a -> b # foldr' :: (a -> b -> b) -> b -> V1 a -> b # foldl :: (b -> a -> b) -> b -> V1 a -> b # foldl' :: (b -> a -> b) -> b -> V1 a -> b # foldr1 :: (a -> a -> a) -> V1 a -> a # foldl1 :: (a -> a -> a) -> V1 a -> a # elem :: Eq a => a -> V1 a -> Bool # maximum :: Ord a => V1 a -> a #  | |
| Foldable (U1 :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => U1 m -> m # foldMap :: Monoid m => (a -> m) -> U1 a -> m # foldMap' :: Monoid m => (a -> m) -> U1 a -> m # foldr :: (a -> b -> b) -> b -> U1 a -> b # foldr' :: (a -> b -> b) -> b -> U1 a -> b # foldl :: (b -> a -> b) -> b -> U1 a -> b # foldl' :: (b -> a -> b) -> b -> U1 a -> b # foldr1 :: (a -> a -> a) -> U1 a -> a # foldl1 :: (a -> a -> a) -> U1 a -> a # elem :: Eq a => a -> U1 a -> Bool # maximum :: Ord a => U1 a -> a #  | |
| Foldable (UAddr :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UAddr m -> m # foldMap :: Monoid m => (a -> m) -> UAddr a -> m # foldMap' :: Monoid m => (a -> m) -> UAddr a -> m # foldr :: (a -> b -> b) -> b -> UAddr a -> b # foldr' :: (a -> b -> b) -> b -> UAddr a -> b # foldl :: (b -> a -> b) -> b -> UAddr a -> b # foldl' :: (b -> a -> b) -> b -> UAddr a -> b # foldr1 :: (a -> a -> a) -> UAddr a -> a # foldl1 :: (a -> a -> a) -> UAddr a -> a # elem :: Eq a => a -> UAddr a -> Bool # maximum :: Ord a => UAddr a -> a # minimum :: Ord a => UAddr a -> a #  | |
| Foldable (UChar :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UChar m -> m # foldMap :: Monoid m => (a -> m) -> UChar a -> m # foldMap' :: Monoid m => (a -> m) -> UChar a -> m # foldr :: (a -> b -> b) -> b -> UChar a -> b # foldr' :: (a -> b -> b) -> b -> UChar a -> b # foldl :: (b -> a -> b) -> b -> UChar a -> b # foldl' :: (b -> a -> b) -> b -> UChar a -> b # foldr1 :: (a -> a -> a) -> UChar a -> a # foldl1 :: (a -> a -> a) -> UChar a -> a # elem :: Eq a => a -> UChar a -> Bool # maximum :: Ord a => UChar a -> a # minimum :: Ord a => UChar a -> a #  | |
| Foldable (UDouble :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UDouble m -> m # foldMap :: Monoid m => (a -> m) -> UDouble a -> m # foldMap' :: Monoid m => (a -> m) -> UDouble a -> m # foldr :: (a -> b -> b) -> b -> UDouble a -> b # foldr' :: (a -> b -> b) -> b -> UDouble a -> b # foldl :: (b -> a -> b) -> b -> UDouble a -> b # foldl' :: (b -> a -> b) -> b -> UDouble a -> b # foldr1 :: (a -> a -> a) -> UDouble a -> a # foldl1 :: (a -> a -> a) -> UDouble a -> a # elem :: Eq a => a -> UDouble a -> Bool # maximum :: Ord a => UDouble a -> a # minimum :: Ord a => UDouble a -> a #  | |
| Foldable (UFloat :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UFloat m -> m # foldMap :: Monoid m => (a -> m) -> UFloat a -> m # foldMap' :: Monoid m => (a -> m) -> UFloat a -> m # foldr :: (a -> b -> b) -> b -> UFloat a -> b # foldr' :: (a -> b -> b) -> b -> UFloat a -> b # foldl :: (b -> a -> b) -> b -> UFloat a -> b # foldl' :: (b -> a -> b) -> b -> UFloat a -> b # foldr1 :: (a -> a -> a) -> UFloat a -> a # foldl1 :: (a -> a -> a) -> UFloat a -> a # elem :: Eq a => a -> UFloat a -> Bool # maximum :: Ord a => UFloat a -> a # minimum :: Ord a => UFloat a -> a #  | |
| Foldable (UInt :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UInt m -> m # foldMap :: Monoid m => (a -> m) -> UInt a -> m # foldMap' :: Monoid m => (a -> m) -> UInt a -> m # foldr :: (a -> b -> b) -> b -> UInt a -> b # foldr' :: (a -> b -> b) -> b -> UInt a -> b # foldl :: (b -> a -> b) -> b -> UInt a -> b # foldl' :: (b -> a -> b) -> b -> UInt a -> b # foldr1 :: (a -> a -> a) -> UInt a -> a # foldl1 :: (a -> a -> a) -> UInt a -> a # elem :: Eq a => a -> UInt a -> Bool # maximum :: Ord a => UInt a -> a #  | |
| Foldable (UWord :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UWord m -> m # foldMap :: Monoid m => (a -> m) -> UWord a -> m # foldMap' :: Monoid m => (a -> m) -> UWord a -> m # foldr :: (a -> b -> b) -> b -> UWord a -> b # foldr' :: (a -> b -> b) -> b -> UWord a -> b # foldl :: (b -> a -> b) -> b -> UWord a -> b # foldl' :: (b -> a -> b) -> b -> UWord a -> b # foldr1 :: (a -> a -> a) -> UWord a -> a # foldl1 :: (a -> a -> a) -> UWord a -> a # elem :: Eq a => a -> UWord a -> Bool # maximum :: Ord a => UWord a -> a # minimum :: Ord a => UWord a -> a #  | |
| Foldable ((,) a) | Since: base-4.7.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => (a, m) -> m # foldMap :: Monoid m => (a0 -> m) -> (a, a0) -> m # foldMap' :: Monoid m => (a0 -> m) -> (a, a0) -> m # foldr :: (a0 -> b -> b) -> b -> (a, a0) -> b # foldr' :: (a0 -> b -> b) -> b -> (a, a0) -> b # foldl :: (b -> a0 -> b) -> b -> (a, a0) -> b # foldl' :: (b -> a0 -> b) -> b -> (a, a0) -> b # foldr1 :: (a0 -> a0 -> a0) -> (a, a0) -> a0 # foldl1 :: (a0 -> a0 -> a0) -> (a, a0) -> a0 # elem :: Eq a0 => a0 -> (a, a0) -> Bool # maximum :: Ord a0 => (a, a0) -> a0 # minimum :: Ord a0 => (a, a0) -> a0 #  | |
| Foldable (Array i) | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Array i m -> m # foldMap :: Monoid m => (a -> m) -> Array i a -> m # foldMap' :: Monoid m => (a -> m) -> Array i a -> m # foldr :: (a -> b -> b) -> b -> Array i a -> b # foldr' :: (a -> b -> b) -> b -> Array i a -> b # foldl :: (b -> a -> b) -> b -> Array i a -> b # foldl' :: (b -> a -> b) -> b -> Array i a -> b # foldr1 :: (a -> a -> a) -> Array i a -> a # foldl1 :: (a -> a -> a) -> Array i a -> a # elem :: Eq a => a -> Array i a -> Bool # maximum :: Ord a => Array i a -> a # minimum :: Ord a => Array i a -> a #  | |
| Foldable (Arg a) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Arg a m -> m # foldMap :: Monoid m => (a0 -> m) -> Arg a a0 -> m # foldMap' :: Monoid m => (a0 -> m) -> Arg a a0 -> m # foldr :: (a0 -> b -> b) -> b -> Arg a a0 -> b # foldr' :: (a0 -> b -> b) -> b -> Arg a a0 -> b # foldl :: (b -> a0 -> b) -> b -> Arg a a0 -> b # foldl' :: (b -> a0 -> b) -> b -> Arg a a0 -> b # foldr1 :: (a0 -> a0 -> a0) -> Arg a a0 -> a0 # foldl1 :: (a0 -> a0 -> a0) -> Arg a a0 -> a0 # elem :: Eq a0 => a0 -> Arg a a0 -> Bool # maximum :: Ord a0 => Arg a a0 -> a0 # minimum :: Ord a0 => Arg a a0 -> a0 #  | |
| Foldable (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Proxy m -> m # foldMap :: Monoid m => (a -> m) -> Proxy a -> m # foldMap' :: Monoid m => (a -> m) -> Proxy a -> m # foldr :: (a -> b -> b) -> b -> Proxy a -> b # foldr' :: (a -> b -> b) -> b -> Proxy a -> b # foldl :: (b -> a -> b) -> b -> Proxy a -> b # foldl' :: (b -> a -> b) -> b -> Proxy a -> b # foldr1 :: (a -> a -> a) -> Proxy a -> a # foldl1 :: (a -> a -> a) -> Proxy a -> a # elem :: Eq a => a -> Proxy a -> Bool # maximum :: Ord a => Proxy a -> a # minimum :: Ord a => Proxy a -> a #  | |
| Foldable (Map k) | Folds in order of increasing key.  | 
Defined in Data.Map.Internal Methods fold :: Monoid m => Map k m -> m # foldMap :: Monoid m => (a -> m) -> Map k a -> m # foldMap' :: Monoid m => (a -> m) -> Map k a -> m # foldr :: (a -> b -> b) -> b -> Map k a -> b # foldr' :: (a -> b -> b) -> b -> Map k a -> b # foldl :: (b -> a -> b) -> b -> Map k a -> b # foldl' :: (b -> a -> b) -> b -> Map k a -> b # foldr1 :: (a -> a -> a) -> Map k a -> a # foldl1 :: (a -> a -> a) -> Map k a -> a # elem :: Eq a => a -> Map k a -> Bool # maximum :: Ord a => Map k a -> a # minimum :: Ord a => Map k a -> a #  | |
| Foldable (HashMap k) | |
Defined in Data.HashMap.Internal Methods fold :: Monoid m => HashMap k m -> m # foldMap :: Monoid m => (a -> m) -> HashMap k a -> m # foldMap' :: Monoid m => (a -> m) -> HashMap k a -> m # foldr :: (a -> b -> b) -> b -> HashMap k a -> b # foldr' :: (a -> b -> b) -> b -> HashMap k a -> b # foldl :: (b -> a -> b) -> b -> HashMap k a -> b # foldl' :: (b -> a -> b) -> b -> HashMap k a -> b # foldr1 :: (a -> a -> a) -> HashMap k a -> a # foldl1 :: (a -> a -> a) -> HashMap k a -> a # toList :: HashMap k a -> [a] # length :: HashMap k a -> Int # elem :: Eq a => a -> HashMap k a -> Bool # maximum :: Ord a => HashMap k a -> a # minimum :: Ord a => HashMap k a -> a #  | |
| Foldable f => Foldable (Rec1 f) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Rec1 f m -> m # foldMap :: Monoid m => (a -> m) -> Rec1 f a -> m # foldMap' :: Monoid m => (a -> m) -> Rec1 f a -> m # foldr :: (a -> b -> b) -> b -> Rec1 f a -> b # foldr' :: (a -> b -> b) -> b -> Rec1 f a -> b # foldl :: (b -> a -> b) -> b -> Rec1 f a -> b # foldl' :: (b -> a -> b) -> b -> Rec1 f a -> b # foldr1 :: (a -> a -> a) -> Rec1 f a -> a # foldl1 :: (a -> a -> a) -> Rec1 f a -> a # elem :: Eq a => a -> Rec1 f a -> Bool # maximum :: Ord a => Rec1 f a -> a # minimum :: Ord a => Rec1 f a -> a #  | |
| Foldable (Const m :: Type -> Type) | Since: base-4.7.0.0  | 
Defined in Data.Functor.Const Methods fold :: Monoid m0 => Const m m0 -> m0 # foldMap :: Monoid m0 => (a -> m0) -> Const m a -> m0 # foldMap' :: Monoid m0 => (a -> m0) -> Const m a -> m0 # foldr :: (a -> b -> b) -> b -> Const m a -> b # foldr' :: (a -> b -> b) -> b -> Const m a -> b # foldl :: (b -> a -> b) -> b -> Const m a -> b # foldl' :: (b -> a -> b) -> b -> Const m a -> b # foldr1 :: (a -> a -> a) -> Const m a -> a # foldl1 :: (a -> a -> a) -> Const m a -> a # elem :: Eq a => a -> Const m a -> Bool # maximum :: Ord a => Const m a -> a # minimum :: Ord a => Const m a -> a #  | |
| Foldable f => Foldable (Ap f) | Since: base-4.12.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Ap f m -> m # foldMap :: Monoid m => (a -> m) -> Ap f a -> m # foldMap' :: Monoid m => (a -> m) -> Ap f a -> m # foldr :: (a -> b -> b) -> b -> Ap f a -> b # foldr' :: (a -> b -> b) -> b -> Ap f a -> b # foldl :: (b -> a -> b) -> b -> Ap f a -> b # foldl' :: (b -> a -> b) -> b -> Ap f a -> b # foldr1 :: (a -> a -> a) -> Ap f a -> a # foldl1 :: (a -> a -> a) -> Ap f a -> a # elem :: Eq a => a -> Ap f a -> Bool # maximum :: Ord a => Ap f a -> a #  | |
| Foldable f => Foldable (Alt f) | Since: base-4.12.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Alt f m -> m # foldMap :: Monoid m => (a -> m) -> Alt f a -> m # foldMap' :: Monoid m => (a -> m) -> Alt f a -> m # foldr :: (a -> b -> b) -> b -> Alt f a -> b # foldr' :: (a -> b -> b) -> b -> Alt f a -> b # foldl :: (b -> a -> b) -> b -> Alt f a -> b # foldl' :: (b -> a -> b) -> b -> Alt f a -> b # foldr1 :: (a -> a -> a) -> Alt f a -> a # foldl1 :: (a -> a -> a) -> Alt f a -> a # elem :: Eq a => a -> Alt f a -> Bool # maximum :: Ord a => Alt f a -> a # minimum :: Ord a => Alt f a -> a #  | |
| Foldable (K1 i c :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => K1 i c m -> m # foldMap :: Monoid m => (a -> m) -> K1 i c a -> m # foldMap' :: Monoid m => (a -> m) -> K1 i c a -> m # foldr :: (a -> b -> b) -> b -> K1 i c a -> b # foldr' :: (a -> b -> b) -> b -> K1 i c a -> b # foldl :: (b -> a -> b) -> b -> K1 i c a -> b # foldl' :: (b -> a -> b) -> b -> K1 i c a -> b # foldr1 :: (a -> a -> a) -> K1 i c a -> a # foldl1 :: (a -> a -> a) -> K1 i c a -> a # elem :: Eq a => a -> K1 i c a -> Bool # maximum :: Ord a => K1 i c a -> a # minimum :: Ord a => K1 i c a -> a #  | |
| (Foldable f, Foldable g) => Foldable (f :+: g) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => (f :+: g) m -> m # foldMap :: Monoid m => (a -> m) -> (f :+: g) a -> m # foldMap' :: Monoid m => (a -> m) -> (f :+: g) a -> m # foldr :: (a -> b -> b) -> b -> (f :+: g) a -> b # foldr' :: (a -> b -> b) -> b -> (f :+: g) a -> b # foldl :: (b -> a -> b) -> b -> (f :+: g) a -> b # foldl' :: (b -> a -> b) -> b -> (f :+: g) a -> b # foldr1 :: (a -> a -> a) -> (f :+: g) a -> a # foldl1 :: (a -> a -> a) -> (f :+: g) a -> a # toList :: (f :+: g) a -> [a] # length :: (f :+: g) a -> Int # elem :: Eq a => a -> (f :+: g) a -> Bool # maximum :: Ord a => (f :+: g) a -> a # minimum :: Ord a => (f :+: g) a -> a #  | |
| (Foldable f, Foldable g) => Foldable (f :*: g) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => (f :*: g) m -> m # foldMap :: Monoid m => (a -> m) -> (f :*: g) a -> m # foldMap' :: Monoid m => (a -> m) -> (f :*: g) a -> m # foldr :: (a -> b -> b) -> b -> (f :*: g) a -> b # foldr' :: (a -> b -> b) -> b -> (f :*: g) a -> b # foldl :: (b -> a -> b) -> b -> (f :*: g) a -> b # foldl' :: (b -> a -> b) -> b -> (f :*: g) a -> b # foldr1 :: (a -> a -> a) -> (f :*: g) a -> a # foldl1 :: (a -> a -> a) -> (f :*: g) a -> a # toList :: (f :*: g) a -> [a] # length :: (f :*: g) a -> Int # elem :: Eq a => a -> (f :*: g) a -> Bool # maximum :: Ord a => (f :*: g) a -> a # minimum :: Ord a => (f :*: g) a -> a #  | |
| (Foldable f, Foldable g) => Foldable (Product f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Product Methods fold :: Monoid m => Product f g m -> m # foldMap :: Monoid m => (a -> m) -> Product f g a -> m # foldMap' :: Monoid m => (a -> m) -> Product f g a -> m # foldr :: (a -> b -> b) -> b -> Product f g a -> b # foldr' :: (a -> b -> b) -> b -> Product f g a -> b # foldl :: (b -> a -> b) -> b -> Product f g a -> b # foldl' :: (b -> a -> b) -> b -> Product f g a -> b # foldr1 :: (a -> a -> a) -> Product f g a -> a # foldl1 :: (a -> a -> a) -> Product f g a -> a # toList :: Product f g a -> [a] # null :: Product f g a -> Bool # length :: Product f g a -> Int # elem :: Eq a => a -> Product f g a -> Bool # maximum :: Ord a => Product f g a -> a # minimum :: Ord a => Product f g a -> a #  | |
| (Foldable f, Foldable g) => Foldable (Sum f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Sum Methods fold :: Monoid m => Sum f g m -> m # foldMap :: Monoid m => (a -> m) -> Sum f g a -> m # foldMap' :: Monoid m => (a -> m) -> Sum f g a -> m # foldr :: (a -> b -> b) -> b -> Sum f g a -> b # foldr' :: (a -> b -> b) -> b -> Sum f g a -> b # foldl :: (b -> a -> b) -> b -> Sum f g a -> b # foldl' :: (b -> a -> b) -> b -> Sum f g a -> b # foldr1 :: (a -> a -> a) -> Sum f g a -> a # foldl1 :: (a -> a -> a) -> Sum f g a -> a # elem :: Eq a => a -> Sum f g a -> Bool # maximum :: Ord a => Sum f g a -> a # minimum :: Ord a => Sum f g a -> a #  | |
| Foldable f => Foldable (M1 i c f) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => M1 i c f m -> m # foldMap :: Monoid m => (a -> m) -> M1 i c f a -> m # foldMap' :: Monoid m => (a -> m) -> M1 i c f a -> m # foldr :: (a -> b -> b) -> b -> M1 i c f a -> b # foldr' :: (a -> b -> b) -> b -> M1 i c f a -> b # foldl :: (b -> a -> b) -> b -> M1 i c f a -> b # foldl' :: (b -> a -> b) -> b -> M1 i c f a -> b # foldr1 :: (a -> a -> a) -> M1 i c f a -> a # foldl1 :: (a -> a -> a) -> M1 i c f a -> a # elem :: Eq a => a -> M1 i c f a -> Bool # maximum :: Ord a => M1 i c f a -> a # minimum :: Ord a => M1 i c f a -> a #  | |
| (Foldable f, Foldable g) => Foldable (f :.: g) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => (f :.: g) m -> m # foldMap :: Monoid m => (a -> m) -> (f :.: g) a -> m # foldMap' :: Monoid m => (a -> m) -> (f :.: g) a -> m # foldr :: (a -> b -> b) -> b -> (f :.: g) a -> b # foldr' :: (a -> b -> b) -> b -> (f :.: g) a -> b # foldl :: (b -> a -> b) -> b -> (f :.: g) a -> b # foldl' :: (b -> a -> b) -> b -> (f :.: g) a -> b # foldr1 :: (a -> a -> a) -> (f :.: g) a -> a # foldl1 :: (a -> a -> a) -> (f :.: g) a -> a # toList :: (f :.: g) a -> [a] # length :: (f :.: g) a -> Int # elem :: Eq a => a -> (f :.: g) a -> Bool # maximum :: Ord a => (f :.: g) a -> a # minimum :: Ord a => (f :.: g) a -> a #  | |
| (Foldable f, Foldable g) => Foldable (Compose f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Compose Methods fold :: Monoid m => Compose f g m -> m # foldMap :: Monoid m => (a -> m) -> Compose f g a -> m # foldMap' :: Monoid m => (a -> m) -> Compose f g a -> m # foldr :: (a -> b -> b) -> b -> Compose f g a -> b # foldr' :: (a -> b -> b) -> b -> Compose f g a -> b # foldl :: (b -> a -> b) -> b -> Compose f g a -> b # foldl' :: (b -> a -> b) -> b -> Compose f g a -> b # foldr1 :: (a -> a -> a) -> Compose f g a -> a # foldl1 :: (a -> a -> a) -> Compose f g a -> a # toList :: Compose f g a -> [a] # null :: Compose f g a -> Bool # length :: Compose f g a -> Int # elem :: Eq a => a -> Compose f g a -> Bool # maximum :: Ord a => Compose f g a -> a # minimum :: Ord a => Compose f g a -> a #  | |
class (Functor t, Foldable t) => Traversable (t :: Type -> Type) 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.
t (purex) =purex t (f<*>x) = t f<*>t x
and the identity functor Identity and composition functors
 Compose are from Data.Functor.Identity and
 Data.Functor.Compose.
A result of the naturality law is a purity law for traverse
traversepure=pure
(The naturality law is implied by parametricity and thus so is the purity law [1, p15].)
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). 
References: [1] The Essence of the Iterator Pattern, Jeremy Gibbons and Bruno C. d. S. Oliveira
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
 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
| Traversable [] | Since: base-2.1  | 
Defined in Data.Traversable  | |
| Traversable Maybe | Since: base-2.1  | 
| Traversable Par1 | Since: base-4.9.0.0  | 
| Traversable Complex | Since: base-4.9.0.0  | 
| Traversable Min | Since: base-4.9.0.0  | 
| Traversable Max | Since: base-4.9.0.0  | 
| Traversable First | Since: base-4.9.0.0  | 
| Traversable Last | Since: base-4.9.0.0  | 
| Traversable Option | Since: base-4.9.0.0  | 
| Traversable ZipList | Since: base-4.9.0.0  | 
| Traversable Identity | Since: base-4.9.0.0  | 
| Traversable First | Since: base-4.8.0.0  | 
| Traversable Last | Since: base-4.8.0.0  | 
| Traversable Dual | Since: base-4.8.0.0  | 
| Traversable Sum | Since: base-4.8.0.0  | 
| Traversable Product | Since: base-4.8.0.0  | 
| Traversable Down | Since: base-4.12.0.0  | 
| Traversable NonEmpty | Since: base-4.9.0.0  | 
| Traversable IntMap | Traverses in order of increasing key.  | 
| Traversable SCC | Since: containers-0.5.9  | 
| Traversable Tree | |
| Traversable Seq | |
| Traversable FingerTree | |
Defined in Data.Sequence.Internal Methods traverse :: Applicative f => (a -> f b) -> FingerTree a -> f (FingerTree b) # sequenceA :: Applicative f => FingerTree (f a) -> f (FingerTree a) # mapM :: Monad m => (a -> m b) -> FingerTree a -> m (FingerTree b) # sequence :: Monad m => FingerTree (m a) -> m (FingerTree a) #  | |
| Traversable Digit | |
| Traversable Node | |
| Traversable Elem | |
| Traversable ViewL | |
| Traversable ViewR | |
| Traversable (Either a) | Since: base-4.7.0.0  | 
Defined in Data.Traversable  | |
| Traversable (V1 :: Type -> Type) | Since: base-4.9.0.0  | 
| Traversable (U1 :: Type -> Type) | Since: base-4.9.0.0  | 
| Traversable (UAddr :: Type -> Type) | Since: base-4.9.0.0  | 
| Traversable (UChar :: Type -> Type) | Since: base-4.9.0.0  | 
| Traversable (UDouble :: Type -> Type) | Since: base-4.9.0.0  | 
| Traversable (UFloat :: Type -> Type) | Since: base-4.9.0.0  | 
| Traversable (UInt :: Type -> Type) | Since: base-4.9.0.0  | 
| Traversable (UWord :: Type -> Type) | Since: base-4.9.0.0  | 
| Traversable ((,) a) | Since: base-4.7.0.0  | 
Defined in Data.Traversable  | |
| Ix i => Traversable (Array i) | Since: base-2.1  | 
| Traversable (Arg a) | Since: base-4.9.0.0  | 
| Traversable (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
| Traversable (Map k) | Traverses in order of increasing key.  | 
| Traversable (HashMap k) | |
Defined in Data.HashMap.Internal  | |
| Traversable f => Traversable (Rec1 f) | Since: base-4.9.0.0  | 
| Traversable (Const m :: Type -> Type) | Since: base-4.7.0.0  | 
| Traversable f => Traversable (Ap f) | Since: base-4.12.0.0  | 
| Traversable f => Traversable (Alt f) | Since: base-4.12.0.0  | 
| Traversable (K1 i c :: Type -> Type) | Since: base-4.9.0.0  | 
| (Traversable f, Traversable g) => Traversable (f :+: g) | Since: base-4.9.0.0  | 
Defined in Data.Traversable  | |
| (Traversable f, Traversable g) => Traversable (f :*: g) | Since: base-4.9.0.0  | 
Defined in Data.Traversable  | |
| (Traversable f, Traversable g) => Traversable (Product f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Product  | |
| (Traversable f, Traversable g) => Traversable (Sum f g) | Since: base-4.9.0.0  | 
| Traversable f => Traversable (M1 i c f) | Since: base-4.9.0.0  | 
| (Traversable f, Traversable g) => Traversable (f :.: g) | Since: base-4.9.0.0  | 
Defined in Data.Traversable  | |
| (Traversable f, Traversable g) => Traversable (Compose f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Compose  | |
The class of semigroups (types with an associative binary operation).
Instances should satisfy the following:
Since: base-4.9.0.0
Instances
| Semigroup Ordering | Since: base-4.9.0.0  | 
| Semigroup () | Since: base-4.9.0.0  | 
| Semigroup Void | Since: base-4.9.0.0  | 
| Semigroup ShortByteString | |
Defined in Data.ByteString.Short.Internal Methods (<>) :: ShortByteString -> ShortByteString -> ShortByteString # sconcat :: NonEmpty ShortByteString -> ShortByteString # stimes :: Integral b => b -> ShortByteString -> ShortByteString #  | |
| Semigroup ByteString | |
Defined in Data.ByteString.Lazy.Internal Methods (<>) :: ByteString -> ByteString -> ByteString # sconcat :: NonEmpty ByteString -> ByteString # stimes :: Integral b => b -> ByteString -> ByteString #  | |
| Semigroup ByteString | |
Defined in Data.ByteString.Internal Methods (<>) :: ByteString -> ByteString -> ByteString # sconcat :: NonEmpty ByteString -> ByteString # stimes :: Integral b => b -> ByteString -> ByteString #  | |
| Semigroup IntSet | Since: containers-0.5.7  | 
| Semigroup [a] | Since: base-4.9.0.0  | 
| Semigroup a => Semigroup (Maybe a) | Since: base-4.9.0.0  | 
| Semigroup a => Semigroup (IO a) | Since: base-4.10.0.0  | 
| Semigroup p => Semigroup (Par1 p) | Since: base-4.12.0.0  | 
| Ord a => Semigroup (Min a) | Since: base-4.9.0.0  | 
| Ord a => Semigroup (Max a) | Since: base-4.9.0.0  | 
| Semigroup (First a) | Since: base-4.9.0.0  | 
| Semigroup (Last a) | Since: base-4.9.0.0  | 
| Monoid m => Semigroup (WrappedMonoid m) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods (<>) :: WrappedMonoid m -> WrappedMonoid m -> WrappedMonoid m # sconcat :: NonEmpty (WrappedMonoid m) -> WrappedMonoid m # stimes :: Integral b => b -> WrappedMonoid m -> WrappedMonoid m #  | |
| Semigroup a => Semigroup (Option a) | Since: base-4.9.0.0  | 
| Semigroup a => Semigroup (Identity a) | Since: base-4.9.0.0  | 
| Semigroup a => Semigroup (Down a) | Since: base-4.11.0.0  | 
| Semigroup (NonEmpty a) | Since: base-4.9.0.0  | 
| Semigroup (IntMap a) | Since: containers-0.5.7  | 
| Semigroup (Seq a) | Since: containers-0.5.7  | 
| Ord a => Semigroup (Set a) | Since: containers-0.5.7  | 
| (Hashable a, Eq a) => Semigroup (HashSet a) | O(n+m) To obtain good performance, the smaller set must be presented as the first argument. Examples
  | 
| Semigroup (MergeSet a) | |
| Semigroup (Bag a) Source # | |
| Semigroup b => Semigroup (a -> b) | Since: base-4.9.0.0  | 
| Semigroup (Either a b) | Since: base-4.9.0.0  | 
| Semigroup (V1 p) | Since: base-4.12.0.0  | 
| Semigroup (U1 p) | Since: base-4.12.0.0  | 
| (Semigroup a, Semigroup b) => Semigroup (a, b) | Since: base-4.9.0.0  | 
| Semigroup (Proxy s) | Since: base-4.9.0.0  | 
| Ord k => Semigroup (Map k v) | |
| (Eq k, Hashable k) => Semigroup (HashMap k v) | If a key occurs in both maps, the mapping from the first will be the mapping in the result. Examples
  | 
| Enum e => Semigroup (Pattern e) Source # | |
| Semigroup (f p) => Semigroup (Rec1 f p) | Since: base-4.12.0.0  | 
| (Semigroup a, Semigroup b, Semigroup c) => Semigroup (a, b, c) | Since: base-4.9.0.0  | 
| Semigroup a => Semigroup (Const a b) | Since: base-4.9.0.0  | 
| Semigroup c => Semigroup (K1 i c p) | Since: base-4.12.0.0  | 
| (Semigroup (f p), Semigroup (g p)) => Semigroup ((f :*: g) p) | Since: base-4.12.0.0  | 
| (Semigroup a, Semigroup b, Semigroup c, Semigroup d) => Semigroup (a, b, c, d) | Since: base-4.9.0.0  | 
| Semigroup (f p) => Semigroup (M1 i c f p) | Since: base-4.12.0.0  | 
| Semigroup (f (g p)) => Semigroup ((f :.: g) p) | Since: base-4.12.0.0  | 
| (Semigroup a, Semigroup b, Semigroup c, Semigroup d, Semigroup e) => Semigroup (a, b, c, d, e) | Since: base-4.9.0.0  | 
class Semigroup a => Monoid a where #
The class of monoids (types with an associative binary operation that has an identity). Instances should satisfy the following:
- Right identity
 x<>mempty= x- Left identity
 mempty<>x = x- Associativity
 x(<>(y<>z) = (x<>y)<>zSemigrouplaw)- Concatenation
 mconcat=foldr(<>)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.
NOTE: Semigroup is a superclass of Monoid since base-4.11.0.0.
Minimal complete definition
Methods
Identity of mappend
>>>"Hello world" <> mempty"Hello world"
An associative operation
NOTE: This method is redundant and has the default
 implementation  since base-4.11.0.0.
 Should it be implemented manually, since mappend = (<>)mappend is a synonym for
 (<>), it is expected that the two functions are defined the same
 way. In a future GHC release mappend will be removed from Monoid.
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.
>>>mconcat ["Hello", " ", "Haskell", "!"]"Hello Haskell!"
Instances
| Monoid Ordering | Since: base-2.1  | 
| Monoid () | Since: base-2.1  | 
| Monoid ShortByteString | |
Defined in Data.ByteString.Short.Internal Methods mappend :: ShortByteString -> ShortByteString -> ShortByteString # mconcat :: [ShortByteString] -> ShortByteString #  | |
| Monoid ByteString | |
Defined in Data.ByteString.Lazy.Internal Methods mempty :: ByteString # mappend :: ByteString -> ByteString -> ByteString # mconcat :: [ByteString] -> ByteString #  | |
| Monoid ByteString | |
Defined in Data.ByteString.Internal Methods mempty :: ByteString # mappend :: ByteString -> ByteString -> ByteString # mconcat :: [ByteString] -> ByteString #  | |
| Monoid IntSet | |
| Monoid [a] | Since: base-2.1  | 
| Semigroup a => Monoid (Maybe a) | Lift a semigroup into  Since 4.11.0: constraint on inner  Since: base-2.1  | 
| Monoid a => Monoid (IO a) | Since: base-4.9.0.0  | 
| Monoid p => Monoid (Par1 p) | Since: base-4.12.0.0  | 
| (Ord a, Bounded a) => Monoid (Min a) | Since: base-4.9.0.0  | 
| (Ord a, Bounded a) => Monoid (Max a) | Since: base-4.9.0.0  | 
| Monoid m => Monoid (WrappedMonoid m) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods mempty :: WrappedMonoid m # mappend :: WrappedMonoid m -> WrappedMonoid m -> WrappedMonoid m # mconcat :: [WrappedMonoid m] -> WrappedMonoid m #  | |
| Semigroup a => Monoid (Option a) | Since: base-4.9.0.0  | 
| Monoid a => Monoid (Identity a) | Since: base-4.9.0.0  | 
| Monoid a => Monoid (Down a) | Since: base-4.11.0.0  | 
| Monoid (IntMap a) | |
| Monoid (Seq a) | |
| Ord a => Monoid (Set a) | |
| (Hashable a, Eq a) => Monoid (HashSet a) | O(n+m) To obtain good performance, the smaller set must be presented as the first argument. Examples
  | 
| Monoid (MergeSet a) | |
| Monoid (Bag a) Source # | |
| Monoid b => Monoid (a -> b) | Since: base-2.1  | 
| Monoid (U1 p) | Since: base-4.12.0.0  | 
| (Monoid a, Monoid b) => Monoid (a, b) | Since: base-2.1  | 
| Monoid (Proxy s) | Since: base-4.7.0.0  | 
| Ord k => Monoid (Map k v) | |
| (Eq k, Hashable k) => Monoid (HashMap k v) | If a key occurs in both maps, the mapping from the first will be the mapping in the result. Examples
  | 
| Enum e => Monoid (Pattern e) Source # | |
| Monoid (f p) => Monoid (Rec1 f p) | Since: base-4.12.0.0  | 
| (Monoid a, Monoid b, Monoid c) => Monoid (a, b, c) | Since: base-2.1  | 
| Monoid a => Monoid (Const a b) | Since: base-4.9.0.0  | 
| Monoid c => Monoid (K1 i c p) | Since: base-4.12.0.0  | 
| (Monoid (f p), Monoid (g p)) => Monoid ((f :*: g) p) | Since: base-4.12.0.0  | 
| (Monoid a, Monoid b, Monoid c, Monoid d) => Monoid (a, b, c, d) | Since: base-2.1  | 
| Monoid (f p) => Monoid (M1 i c f p) | Since: base-4.12.0.0  | 
| Monoid (f (g p)) => Monoid ((f :.: g) p) | Since: base-4.12.0.0  | 
| (Monoid a, Monoid b, Monoid c, Monoid d, Monoid e) => Monoid (a, b, c, d, e) | Since: base-2.1  | 
Instances
| Bounded Bool | Since: base-2.1  | 
| Enum Bool | Since: base-2.1  | 
| Eq Bool | |
| Ord Bool | |
| Read Bool | Since: base-2.1  | 
| Show Bool | Since: base-2.1  | 
| Ix Bool | Since: base-2.1  | 
| Generic Bool | Since: base-4.6.0.0  | 
| Hashable Bool | |
Defined in Data.Hashable.Class  | |
| SingKind Bool | Since: base-4.9.0.0  | 
Defined in GHC.Generics Associated Types type DemoteRep Bool  | |
| SingI 'False | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| SingI 'True | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| type Rep Bool | |
| type DemoteRep Bool | |
Defined in GHC.Generics  | |
| data Sing (a :: Bool) | |
The character type Char is an enumeration whose values represent
Unicode (or equivalently ISO/IEC 10646) code points (i.e. 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: base-2.1  | 
| Enum Char | Since: base-2.1  | 
| Eq Char | |
| Ord Char | |
| Read Char | Since: base-2.1  | 
| Show Char | Since: base-2.1  | 
| Ix Char | Since: base-2.1  | 
| Hashable Char | |
Defined in Data.Hashable.Class  | |
| Generic1 (URec Char :: k -> Type) | Since: base-4.9.0.0  | 
| Foldable (UChar :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UChar m -> m # foldMap :: Monoid m => (a -> m) -> UChar a -> m # foldMap' :: Monoid m => (a -> m) -> UChar a -> m # foldr :: (a -> b -> b) -> b -> UChar a -> b # foldr' :: (a -> b -> b) -> b -> UChar a -> b # foldl :: (b -> a -> b) -> b -> UChar a -> b # foldl' :: (b -> a -> b) -> b -> UChar a -> b # foldr1 :: (a -> a -> a) -> UChar a -> a # foldl1 :: (a -> a -> a) -> UChar a -> a # elem :: Eq a => a -> UChar a -> Bool # maximum :: Ord a => UChar a -> a # minimum :: Ord a => UChar a -> a #  | |
| Traversable (UChar :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Char :: Type -> Type) | Since: base-4.9.0.0  | 
| Eq (URec Char p) | Since: base-4.9.0.0  | 
| Ord (URec Char p) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| Show (URec Char p) | Since: base-4.9.0.0  | 
| Generic (URec Char p) | Since: base-4.9.0.0  | 
| data URec Char (p :: k) | Used for marking occurrences of  Since: base-4.9.0.0  | 
| type Rep1 (URec Char :: k -> Type) | |
Defined in GHC.Generics  | |
| type Rep (URec Char p) | |
Defined in GHC.Generics  | |
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 | Note that due to the presence of  
 Also note that  
  | 
| Floating Double | Since: base-2.1  | 
| Ord Double | Note that due to the presence of  
 Also note that, due to the same,  
  | 
| Read Double | Since: base-2.1  | 
| RealFloat Double | Since: base-2.1  | 
Defined in GHC.Float Methods floatRadix :: Double -> Integer # floatDigits :: Double -> Int # floatRange :: Double -> (Int, Int) # decodeFloat :: Double -> (Integer, Int) # encodeFloat :: Integer -> Int -> Double # significand :: Double -> Double # scaleFloat :: Int -> Double -> Double # isInfinite :: Double -> Bool # isDenormalized :: Double -> Bool # isNegativeZero :: Double -> Bool #  | |
| Hashable Double | Note: prior to  The  Since: hashable-1.3.0.0  | 
Defined in Data.Hashable.Class  | |
| Generic1 (URec Double :: k -> Type) | Since: base-4.9.0.0  | 
| Foldable (UDouble :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UDouble m -> m # foldMap :: Monoid m => (a -> m) -> UDouble a -> m # foldMap' :: Monoid m => (a -> m) -> UDouble a -> m # foldr :: (a -> b -> b) -> b -> UDouble a -> b # foldr' :: (a -> b -> b) -> b -> UDouble a -> b # foldl :: (b -> a -> b) -> b -> UDouble a -> b # foldl' :: (b -> a -> b) -> b -> UDouble a -> b # foldr1 :: (a -> a -> a) -> UDouble a -> a # foldl1 :: (a -> a -> a) -> UDouble a -> a # elem :: Eq a => a -> UDouble a -> Bool # maximum :: Ord a => UDouble a -> a # minimum :: Ord a => UDouble a -> a #  | |
| Traversable (UDouble :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Double :: Type -> Type) | Since: base-4.9.0.0  | 
| Eq (URec Double p) | Since: base-4.9.0.0  | 
| Ord (URec Double p) | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods compare :: URec Double p -> URec Double p -> Ordering # (<) :: URec Double p -> URec Double p -> Bool # (<=) :: URec Double p -> URec Double p -> Bool # (>) :: URec Double p -> URec Double p -> Bool # (>=) :: URec Double p -> URec Double p -> Bool #  | |
| Show (URec Double p) | Since: base-4.9.0.0  | 
| Generic (URec Double p) | Since: base-4.9.0.0  | 
| data URec Double (p :: k) | Used for marking occurrences of  Since: base-4.9.0.0  | 
| type Rep1 (URec Double :: k -> Type) | |
Defined in GHC.Generics  | |
| type Rep (URec Double p) | |
Defined in GHC.Generics  | |
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 | Note that due to the presence of  
 Also note that  
  | 
| Floating Float | Since: base-2.1  | 
| Ord Float | Note that due to the presence of  
 Also note that, due to the same,  
  | 
| Read Float | Since: base-2.1  | 
| RealFloat Float | Since: base-2.1  | 
Defined in GHC.Float Methods floatRadix :: Float -> Integer # floatDigits :: Float -> Int # floatRange :: Float -> (Int, Int) # decodeFloat :: Float -> (Integer, Int) # encodeFloat :: Integer -> Int -> Float # significand :: Float -> Float # scaleFloat :: Int -> Float -> Float # isInfinite :: Float -> Bool # isDenormalized :: Float -> Bool # isNegativeZero :: Float -> Bool #  | |
| Hashable Float | Note: prior to  The  Since: hashable-1.3.0.0  | 
Defined in Data.Hashable.Class  | |
| Generic1 (URec Float :: k -> Type) | Since: base-4.9.0.0  | 
| Foldable (UFloat :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UFloat m -> m # foldMap :: Monoid m => (a -> m) -> UFloat a -> m # foldMap' :: Monoid m => (a -> m) -> UFloat a -> m # foldr :: (a -> b -> b) -> b -> UFloat a -> b # foldr' :: (a -> b -> b) -> b -> UFloat a -> b # foldl :: (b -> a -> b) -> b -> UFloat a -> b # foldl' :: (b -> a -> b) -> b -> UFloat a -> b # foldr1 :: (a -> a -> a) -> UFloat a -> a # foldl1 :: (a -> a -> a) -> UFloat a -> a # elem :: Eq a => a -> UFloat a -> Bool # maximum :: Ord a => UFloat a -> a # minimum :: Ord a => UFloat a -> a #  | |
| Traversable (UFloat :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Float :: Type -> Type) | Since: base-4.9.0.0  | 
| Eq (URec Float p) | |
| Ord (URec Float p) | |
Defined in GHC.Generics  | |
| Show (URec Float p) | |
| Generic (URec Float p) | |
| data URec Float (p :: k) | Used for marking occurrences of  Since: base-4.9.0.0  | 
| type Rep1 (URec Float :: k -> Type) | |
Defined in GHC.Generics  | |
| type Rep (URec Float p) | |
Defined in GHC.Generics  | |
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: base-2.1  | 
| Enum Int | Since: base-2.1  | 
| Eq Int | |
| Integral Int | Since: base-2.0.1  | 
| Num Int | Since: base-2.1  | 
| Ord Int | |
| Read Int | Since: base-2.1  | 
| Real Int | Since: base-2.0.1  | 
Defined in GHC.Real Methods toRational :: Int -> Rational #  | |
| Show Int | Since: base-2.1  | 
| Ix Int | Since: base-2.1  | 
| Hashable Int | |
Defined in Data.Hashable.Class  | |
| Generic1 (URec Int :: k -> Type) | Since: base-4.9.0.0  | 
| Foldable (UInt :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UInt m -> m # foldMap :: Monoid m => (a -> m) -> UInt a -> m # foldMap' :: Monoid m => (a -> m) -> UInt a -> m # foldr :: (a -> b -> b) -> b -> UInt a -> b # foldr' :: (a -> b -> b) -> b -> UInt a -> b # foldl :: (b -> a -> b) -> b -> UInt a -> b # foldl' :: (b -> a -> b) -> b -> UInt a -> b # foldr1 :: (a -> a -> a) -> UInt a -> a # foldl1 :: (a -> a -> a) -> UInt a -> a # elem :: Eq a => a -> UInt a -> Bool # maximum :: Ord a => UInt a -> a #  | |
| Traversable (UInt :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Int :: Type -> Type) | Since: base-4.9.0.0  | 
| Eq (URec Int p) | Since: base-4.9.0.0  | 
| Ord (URec Int p) | Since: base-4.9.0.0  | 
| Show (URec Int p) | Since: base-4.9.0.0  | 
| Generic (URec Int p) | Since: base-4.9.0.0  | 
| data URec Int (p :: k) | Used for marking occurrences of  Since: base-4.9.0.0  | 
| type Rep1 (URec Int :: k -> Type) | |
Defined in GHC.Generics  | |
| type Rep (URec Int p) | |
Defined in GHC.Generics  | |
Arbitrary precision integers. In contrast with fixed-size integral types
 such as Int, the Integer type represents the entire infinite range of
 integers.
For more information about this type's representation, see the comments in its implementation.
Instances
| Enum Integer | Since: base-2.1  | 
| Eq Integer | |
| Integral Integer | Since: base-2.0.1  | 
Defined in GHC.Real  | |
| Num Integer | Since: base-2.1  | 
| Ord Integer | |
| Read Integer | Since: base-2.1  | 
| Real Integer | Since: base-2.0.1  | 
Defined in GHC.Real Methods toRational :: Integer -> Rational #  | |
| Show Integer | Since: base-2.1  | 
| Ix Integer | Since: base-2.1  | 
Defined in GHC.Ix  | |
| Hashable Integer | |
Defined in Data.Hashable.Class  | |
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: base-2.1  | 
| Functor Maybe | Since: base-2.1  | 
| MonadFail Maybe | Since: base-4.9.0.0  | 
Defined in Control.Monad.Fail  | |
| Applicative Maybe | Since: base-2.1  | 
| Foldable Maybe | Since: base-2.1  | 
Defined in Data.Foldable Methods fold :: Monoid m => Maybe m -> m # foldMap :: Monoid m => (a -> m) -> Maybe a -> m # foldMap' :: Monoid m => (a -> m) -> Maybe a -> m # foldr :: (a -> b -> b) -> b -> Maybe a -> b # foldr' :: (a -> b -> b) -> b -> Maybe a -> b # foldl :: (b -> a -> b) -> b -> Maybe a -> b # foldl' :: (b -> a -> b) -> b -> Maybe a -> b # foldr1 :: (a -> a -> a) -> Maybe a -> a # foldl1 :: (a -> a -> a) -> Maybe a -> a # elem :: Eq a => a -> Maybe a -> Bool # maximum :: Ord a => Maybe a -> a # minimum :: Ord a => Maybe a -> a #  | |
| Traversable Maybe | Since: base-2.1  | 
| Eq1 Maybe | Since: base-4.9.0.0  | 
| Ord1 Maybe | Since: base-4.9.0.0  | 
Defined in Data.Functor.Classes  | |
| Read1 Maybe | Since: base-4.9.0.0  | 
Defined in Data.Functor.Classes  | |
| Show1 Maybe | Since: base-4.9.0.0  | 
| Alternative Maybe | Since: base-2.1  | 
| MonadPlus Maybe | Since: base-2.1  | 
| Hashable1 Maybe | |
Defined in Data.Hashable.Class  | |
| Eq a => Eq (Maybe a) | Since: base-2.1  | 
| Ord a => Ord (Maybe a) | Since: base-2.1  | 
| Read a => Read (Maybe a) | Since: base-2.1  | 
| Show a => Show (Maybe a) | Since: base-2.1  | 
| Generic (Maybe a) | Since: base-4.6.0.0  | 
| Semigroup a => Semigroup (Maybe a) | Since: base-4.9.0.0  | 
| Semigroup a => Monoid (Maybe a) | Lift a semigroup into  Since 4.11.0: constraint on inner  Since: base-2.1  | 
| Hashable a => Hashable (Maybe a) | |
Defined in Data.Hashable.Class  | |
| SingKind a => SingKind (Maybe a) | Since: base-4.9.0.0  | 
Defined in GHC.Generics Associated Types type DemoteRep (Maybe a)  | |
| Generic1 Maybe | Since: base-4.6.0.0  | 
| SingI ('Nothing :: Maybe a) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| SingI a2 => SingI ('Just a2 :: Maybe a1) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| type Rep (Maybe a) | |
Defined in GHC.Generics  | |
| type DemoteRep (Maybe a) | |
Defined in GHC.Generics  | |
| data Sing (b :: Maybe a) | |
| type Rep1 Maybe | |
Instances
| Bounded Ordering | Since: base-2.1  | 
| Enum Ordering | Since: base-2.1  | 
| Eq Ordering | |
| Ord Ordering | |
Defined in GHC.Classes  | |
| Read Ordering | Since: base-2.1  | 
| Show Ordering | Since: base-2.1  | 
| Ix Ordering | Since: base-2.1  | 
Defined in GHC.Ix Methods range :: (Ordering, Ordering) -> [Ordering] # index :: (Ordering, Ordering) -> Ordering -> Int # unsafeIndex :: (Ordering, Ordering) -> Ordering -> Int # inRange :: (Ordering, Ordering) -> Ordering -> Bool # rangeSize :: (Ordering, Ordering) -> Int # unsafeRangeSize :: (Ordering, Ordering) -> Int #  | |
| Generic Ordering | Since: base-4.6.0.0  | 
| Semigroup Ordering | Since: base-4.9.0.0  | 
| Monoid Ordering | Since: base-2.1  | 
| Hashable Ordering | |
Defined in Data.Hashable.Class  | |
| type Rep Ordering | |
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: base-2.1  | 
| Functor IO | Since: base-2.1  | 
| MonadFail IO | Since: base-4.9.0.0  | 
Defined in Control.Monad.Fail  | |
| Applicative IO | Since: base-2.1  | 
| MonadIO IO | Since: base-4.9.0.0  | 
Defined in Control.Monad.IO.Class  | |
| Alternative IO | Since: base-4.9.0.0  | 
| MonadPlus IO | Since: base-4.9.0.0  | 
| Semigroup a => Semigroup (IO a) | Since: base-4.10.0.0  | 
| Monoid a => Monoid (IO a) | Since: base-4.9.0.0  | 
Instances
| Bounded Word | Since: base-2.1  | 
| Enum Word | Since: base-2.1  | 
| Eq Word | |
| Integral Word | Since: base-2.1  | 
| Num Word | Since: base-2.1  | 
| Ord Word | |
| Read Word | Since: base-4.5.0.0  | 
| Real Word | Since: base-2.1  | 
Defined in GHC.Real Methods toRational :: Word -> Rational #  | |
| Show Word | Since: base-2.1  | 
| Ix Word | Since: base-4.6.0.0  | 
| Hashable Word | |
Defined in Data.Hashable.Class  | |
| Generic1 (URec Word :: k -> Type) | Since: base-4.9.0.0  | 
| Foldable (UWord :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UWord m -> m # foldMap :: Monoid m => (a -> m) -> UWord a -> m # foldMap' :: Monoid m => (a -> m) -> UWord a -> m # foldr :: (a -> b -> b) -> b -> UWord a -> b # foldr' :: (a -> b -> b) -> b -> UWord a -> b # foldl :: (b -> a -> b) -> b -> UWord a -> b # foldl' :: (b -> a -> b) -> b -> UWord a -> b # foldr1 :: (a -> a -> a) -> UWord a -> a # foldl1 :: (a -> a -> a) -> UWord a -> a # elem :: Eq a => a -> UWord a -> Bool # maximum :: Ord a => UWord a -> a # minimum :: Ord a => UWord a -> a #  | |
| Traversable (UWord :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Word :: Type -> Type) | Since: base-4.9.0.0  | 
| Eq (URec Word p) | Since: base-4.9.0.0  | 
| Ord (URec Word p) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| Show (URec Word p) | Since: base-4.9.0.0  | 
| Generic (URec Word p) | Since: base-4.9.0.0  | 
| data URec Word (p :: k) | Used for marking occurrences of  Since: base-4.9.0.0  | 
| type Rep1 (URec Word :: k -> Type) | |
Defined in GHC.Generics  | |
| type Rep (URec Word p) | |
Defined in GHC.Generics  | |
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
| Eq2 Either | Since: base-4.9.0.0  | 
| Ord2 Either | Since: base-4.9.0.0  | 
Defined in Data.Functor.Classes  | |
| Read2 Either | Since: base-4.9.0.0  | 
Defined in Data.Functor.Classes Methods liftReadsPrec2 :: (Int -> ReadS a) -> ReadS [a] -> (Int -> ReadS b) -> ReadS [b] -> Int -> ReadS (Either a b) # liftReadList2 :: (Int -> ReadS a) -> ReadS [a] -> (Int -> ReadS b) -> ReadS [b] -> ReadS [Either a b] # liftReadPrec2 :: ReadPrec a -> ReadPrec [a] -> ReadPrec b -> ReadPrec [b] -> ReadPrec (Either a b) # liftReadListPrec2 :: ReadPrec a -> ReadPrec [a] -> ReadPrec b -> ReadPrec [b] -> ReadPrec [Either a b] #  | |
| Show2 Either | Since: base-4.9.0.0  | 
| Hashable2 Either | |
Defined in Data.Hashable.Class  | |
| Monad (Either e) | Since: base-4.4.0.0  | 
| Functor (Either a) | Since: base-3.0  | 
| Applicative (Either e) | Since: base-3.0  | 
| Foldable (Either a) | Since: base-4.7.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Either a m -> m # foldMap :: Monoid m => (a0 -> m) -> Either a a0 -> m # foldMap' :: Monoid m => (a0 -> m) -> Either a a0 -> m # foldr :: (a0 -> b -> b) -> b -> Either a a0 -> b # foldr' :: (a0 -> b -> b) -> b -> Either a a0 -> b # foldl :: (b -> a0 -> b) -> b -> Either a a0 -> b # foldl' :: (b -> a0 -> b) -> b -> Either a a0 -> b # foldr1 :: (a0 -> a0 -> a0) -> Either a a0 -> a0 # foldl1 :: (a0 -> a0 -> a0) -> Either a a0 -> a0 # toList :: Either a a0 -> [a0] # length :: Either a a0 -> Int # elem :: Eq a0 => a0 -> Either a a0 -> Bool # maximum :: Ord a0 => Either a a0 -> a0 # minimum :: Ord a0 => Either a a0 -> a0 #  | |
| Traversable (Either a) | Since: base-4.7.0.0  | 
Defined in Data.Traversable  | |
| Eq a => Eq1 (Either a) | Since: base-4.9.0.0  | 
| Ord a => Ord1 (Either a) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Classes  | |
| Read a => Read1 (Either a) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Classes Methods liftReadsPrec :: (Int -> ReadS a0) -> ReadS [a0] -> Int -> ReadS (Either a a0) # liftReadList :: (Int -> ReadS a0) -> ReadS [a0] -> ReadS [Either a a0] # liftReadPrec :: ReadPrec a0 -> ReadPrec [a0] -> ReadPrec (Either a a0) # liftReadListPrec :: ReadPrec a0 -> ReadPrec [a0] -> ReadPrec [Either a a0] #  | |
| Show a => Show1 (Either a) | Since: base-4.9.0.0  | 
| Hashable a => Hashable1 (Either a) | |
Defined in Data.Hashable.Class  | |
| Generic1 (Either a :: Type -> Type) | Since: base-4.6.0.0  | 
| (Eq a, Eq b) => Eq (Either a b) | Since: base-2.1  | 
| (Ord a, Ord b) => Ord (Either a b) | Since: base-2.1  | 
| (Read a, Read b) => Read (Either a b) | Since: base-3.0  | 
| (Show a, Show b) => Show (Either a b) | Since: base-3.0  | 
| Generic (Either a b) | Since: base-4.6.0.0  | 
| Semigroup (Either a b) | Since: base-4.9.0.0  | 
| (Hashable a, Hashable b) => Hashable (Either a b) | |
Defined in Data.Hashable.Class  | |
| type Rep1 (Either a :: Type -> Type) | |
Defined in GHC.Generics type Rep1 (Either a :: Type -> Type) = D1 ('MetaData "Either" "Data.Either" "base" 'False) (C1 ('MetaCons "Left" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 a)) :+: C1 ('MetaCons "Right" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) Par1))  | |
| type Rep (Either a b) | |
Defined in GHC.Generics type Rep (Either a b) = D1 ('MetaData "Either" "Data.Either" "base" 'False) (C1 ('MetaCons "Left" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 a)) :+: C1 ('MetaCons "Right" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 b)))  | |
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]])
writeFile :: FilePath -> String -> IO () #
The computation writeFile file str function writes the string str,
 to the file 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.
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.
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).
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.
type IOError = IOException #
all :: Foldable t => (a -> Bool) -> t a -> Bool #
Determines whether all elements of the structure satisfy the predicate.
any :: Foldable t => (a -> Bool) -> t a -> Bool #
Determines whether any element of the structure satisfies the predicate.
concatMap :: Foldable t => (a -> [b]) -> t a -> [b] #
Map a function over all the elements of a container and concatenate the resulting lists.
concat :: Foldable t => t [a] -> [a] #
The concatenation of all the elements of a container of lists.
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.
words breaks a string up into a list of words, which were delimited
 by white space.
>>>words "Lorem ipsum\ndolor"["Lorem","ipsum","dolor"]
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.
read :: Read a => String -> a #
The read function reads input from a string, which must be
 completely consumed by the input process. read fails with an error if the
 parse is unsuccessful, and it is therefore discouraged from being used in
 real applications. Use readMaybe or readEither for safe alternatives.
>>>read "123" :: Int123
>>>read "hello" :: Int*** Exception: Prelude.read: no parse
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
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
 
lcm :: Integral a => a -> a -> a #
 is the smallest positive integer that both lcm x yx and y divide.
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
(^^) :: (Fractional a, Integral b) => a -> b -> a infixr 8 #
raise a number to an integral power
showString :: String -> ShowS #
utility function converting a String to a show function that
 simply prepends the string unchanged.
utility function converting a Char to a show function that
 simply prepends the character unchanged.
unzip :: [(a, b)] -> ([a], [b]) #
unzip transforms a list of pairs into a list of first components
 and a list of second components.
zipWith :: (a -> b -> c) -> [a] -> [b] -> [c] #
\(\mathcal{O}(\min(m,n))\). zipWith generalises zip by zipping with the
 function given as the first argument, instead of a tupling function. For
 example,  is applied to two lists to produce the list of
 corresponding sums:zipWith (+)
>>>zipWith (+) [1, 2, 3] [4, 5, 6][5,7,9]
zipWith is right-lazy:
zipWith f [] _|_ = []
zipWith is capable of list fusion, but it is restricted to its
 first list argument and its resulting list.
(!!) :: [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.
lookup :: Eq a => a -> [(a, b)] -> Maybe b #
\(\mathcal{O}(n)\). lookup key assocs looks up a key in an association
 list.
>>>lookup 2 [(1, "first"), (2, "second"), (3, "third")]Just "second"
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],[])
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])
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.
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.
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.
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] == []
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.
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.
\(\mathcal{O}(n)\). Return all the elements of a list except the last one. The list must be non-empty.
\(\mathcal{O}(n)\). Extract the last element of a list, which must be finite and non-empty.
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""
(<$>) :: 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)
uncurry :: (a -> b -> c) -> (a, b) -> c #
uncurry converts a curried function to a function on pairs.
Examples
>>>uncurry (+) (1,2)3
>>>uncurry ($) (show, 1)"1"
>>>map (uncurry max) [(1,2), (3,4), (6,8)][2,4,8]
until :: (a -> Bool) -> (a -> a) -> a -> a #
 yields the result of applying until p ff until p holds.
($!) :: forall (r :: RuntimeRep) a (b :: TYPE r). (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.
flip :: (a -> b -> c) -> b -> a -> c #
 takes its (first) two arguments in the reverse order of flip ff.
>>>flip (++) "hello" "world""worldhello"
const x is a unary function which evaluates to x for all inputs.
>>>const 42 "hello"42
>>>map (const 42) [0..3][42,42,42,42]
(=<<) :: Monad m => (a -> m b) -> m a -> m b infixr 1 #
Same as >>=, but with the arguments interchanged.
undefined :: forall (r :: RuntimeRep) (a :: TYPE r). HasCallStack => a #
errorWithoutStackTrace :: forall (r :: RuntimeRep) (a :: TYPE r). [Char] -> a #
A variant of error that does not produce a stack trace.
Since: base-4.9.0.0
error :: forall (r :: RuntimeRep) (a :: TYPE r). HasCallStack => [Char] -> a #
error stops execution and displays an error message.
module Control.Applicative
module Control.Monad
module Control.Monad.IO.Class
liftPass :: Monad m => Pass w m (a, s) -> Pass w (StateT s m) a #
Lift a pass operation to the new monad.
liftListen :: Monad m => Listen w m (a, s) -> Listen w (StateT s m) a #
Lift a listen operation to the new monad.
liftCallCC' :: CallCC m (a, s) (b, s) -> CallCC (StateT s m) a b #
In-situ lifting of a callCC operation to the new monad.
 This version uses the current state on entering the continuation.
 It does not satisfy the uniformity property (see Control.Monad.Signatures).
liftCallCC :: CallCC m (a, s) (b, s) -> CallCC (StateT s m) a b #
Uniform lifting of a callCC operation to the new monad.
 This version rolls back to the original state on entering the
 continuation.
put :: forall (m :: Type -> Type) s. Monad m => s -> StateT s m () #
 sets the state within the monad to put ss.
get :: forall (m :: Type -> Type) s. Monad m => StateT s m s #
Fetch the current value of the state within the monad.
withStateT :: forall s (m :: Type -> Type) a. (s -> s) -> StateT s m a -> StateT s m a #
 executes action withStateT f mm on a state modified by
 applying f.
withStateTf m =modifyf >> m
execStateT :: Monad m => StateT s m a -> s -> m s #
Evaluate a state computation with the given initial state and return the final state, discarding the final value.
execStateTm s =liftMsnd(runStateTm s)
evalStateT :: Monad m => StateT s m a -> s -> m a #
Evaluate a state computation with the given initial state and return the final value, discarding the final state.
evalStateTm s =liftMfst(runStateTm s)
Arguments
| :: State s a | state-passing computation to execute  | 
| -> s | initial value  | 
| -> s | final state  | 
Arguments
| :: State s a | state-passing computation to execute  | 
| -> s | initial value  | 
| -> a | return value of the state computation  | 
Arguments
| :: State s a | state-passing computation to execute  | 
| -> s | initial state  | 
| -> (a, s) | return value and final state  | 
Unwrap a state monad computation as a function.
 (The inverse of state.)
Arguments
| :: forall (m :: Type -> Type) s a. Monad m | |
| => (s -> (a, s)) | pure state transformer  | 
| -> StateT s m a | equivalent state-passing computation  | 
Construct a state monad computation from a function.
 (The inverse of runState.)
type State s = StateT s Identity #
A state monad parameterized by the type s of the state to carry.
The return function leaves the state unchanged, while >>= uses
 the final state of the first computation as the initial state of
 the second.
newtype StateT s (m :: Type -> Type) a #
A state transformer monad parameterized by:
s- The state.m- The inner monad.
The return function leaves the state unchanged, while >>= uses
 the final state of the first computation as the initial state of
 the second.
Instances
| MonadTrans (StateT s) | |
Defined in Control.Monad.Trans.State.Strict  | |
| Monad m => Monad (StateT s m) | |
| Functor m => Functor (StateT s m) | |
| MonadFix m => MonadFix (StateT s m) | |
Defined in Control.Monad.Trans.State.Strict  | |
| MonadFail m => MonadFail (StateT s m) | |
Defined in Control.Monad.Trans.State.Strict  | |
| (Functor m, Monad m) => Applicative (StateT s m) | |
Defined in Control.Monad.Trans.State.Strict  | |
| Contravariant m => Contravariant (StateT s m) | |
| MonadIO m => MonadIO (StateT s m) | |
Defined in Control.Monad.Trans.State.Strict  | |
| (Functor m, MonadPlus m) => Alternative (StateT s m) | |
| MonadPlus m => MonadPlus (StateT s m) | |
module Data.Coerce
class Foldable (t :: Type -> Type) where #
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
length = getSum . foldMap (Sum . const 1)
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
fold :: Monoid m => t m -> m #
Combine the elements of a structure using a monoid.
foldMap :: Monoid m => (a -> m) -> t a -> m #
Map each element of the structure to a monoid, and combine the results.
foldMap' :: Monoid m => (a -> m) -> t a -> m #
A variant of foldMap that is strict in the accumulator.
Since: base-4.13.0.0
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 but with strict application of the operator.
This ensures that each step of the fold is forced to weak head normal
 form before being applied, avoiding the collection of thunks that would
 otherwise occur. This is often what you want to strictly reduce a finite
 list to a single, monolithic result (e.g. length).
For a general Foldable structure this should be semantically identical
 to,
foldl' f z =foldl'f z .toList
Since: base-4.6.0.0
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
List of elements of a structure, from left to right.
Since: base-4.8.0.0
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.
Since: base-4.8.0.0
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.
Since: base-4.8.0.0
elem :: Eq a => a -> t a -> Bool infix 4 #
Does the element occur in the structure?
Since: base-4.8.0.0
maximum :: Ord a => t a -> a #
The largest element of a non-empty structure.
Since: base-4.8.0.0
minimum :: Ord a => t a -> a #
The least element of a non-empty structure.
Since: base-4.8.0.0
The sum function computes the sum of the numbers of a structure.
Since: base-4.8.0.0
product :: Num a => t a -> a #
The product function computes the product of the numbers of a
 structure.
Since: base-4.8.0.0
Instances
| Foldable [] | Since: base-2.1  | 
Defined in Data.Foldable Methods fold :: Monoid m => [m] -> m # foldMap :: Monoid m => (a -> m) -> [a] -> m # foldMap' :: Monoid m => (a -> m) -> [a] -> m # foldr :: (a -> b -> b) -> b -> [a] -> b # foldr' :: (a -> b -> b) -> b -> [a] -> b # foldl :: (b -> a -> b) -> b -> [a] -> b # foldl' :: (b -> a -> b) -> b -> [a] -> b # foldr1 :: (a -> a -> a) -> [a] -> a # foldl1 :: (a -> a -> a) -> [a] -> a # elem :: Eq a => a -> [a] -> Bool # maximum :: Ord a => [a] -> a #  | |
| Foldable Maybe | Since: base-2.1  | 
Defined in Data.Foldable Methods fold :: Monoid m => Maybe m -> m # foldMap :: Monoid m => (a -> m) -> Maybe a -> m # foldMap' :: Monoid m => (a -> m) -> Maybe a -> m # foldr :: (a -> b -> b) -> b -> Maybe a -> b # foldr' :: (a -> b -> b) -> b -> Maybe a -> b # foldl :: (b -> a -> b) -> b -> Maybe a -> b # foldl' :: (b -> a -> b) -> b -> Maybe a -> b # foldr1 :: (a -> a -> a) -> Maybe a -> a # foldl1 :: (a -> a -> a) -> Maybe a -> a # elem :: Eq a => a -> Maybe a -> Bool # maximum :: Ord a => Maybe a -> a # minimum :: Ord a => Maybe a -> a #  | |
| Foldable Par1 | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Par1 m -> m # foldMap :: Monoid m => (a -> m) -> Par1 a -> m # foldMap' :: Monoid m => (a -> m) -> Par1 a -> m # foldr :: (a -> b -> b) -> b -> Par1 a -> b # foldr' :: (a -> b -> b) -> b -> Par1 a -> b # foldl :: (b -> a -> b) -> b -> Par1 a -> b # foldl' :: (b -> a -> b) -> b -> Par1 a -> b # foldr1 :: (a -> a -> a) -> Par1 a -> a # foldl1 :: (a -> a -> a) -> Par1 a -> a # elem :: Eq a => a -> Par1 a -> Bool # maximum :: Ord a => Par1 a -> a #  | |
| Foldable Complex | Since: base-4.9.0.0  | 
Defined in Data.Complex Methods fold :: Monoid m => Complex m -> m # foldMap :: Monoid m => (a -> m) -> Complex a -> m # foldMap' :: Monoid m => (a -> m) -> Complex a -> m # foldr :: (a -> b -> b) -> b -> Complex a -> b # foldr' :: (a -> b -> b) -> b -> Complex a -> b # foldl :: (b -> a -> b) -> b -> Complex a -> b # foldl' :: (b -> a -> b) -> b -> Complex a -> b # foldr1 :: (a -> a -> a) -> Complex a -> a # foldl1 :: (a -> a -> a) -> Complex a -> a # elem :: Eq a => a -> Complex a -> Bool # maximum :: Ord a => Complex a -> a # minimum :: Ord a => Complex a -> a #  | |
| Foldable Min | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Min m -> m # foldMap :: Monoid m => (a -> m) -> Min a -> m # foldMap' :: Monoid m => (a -> m) -> Min a -> m # foldr :: (a -> b -> b) -> b -> Min a -> b # foldr' :: (a -> b -> b) -> b -> Min a -> b # foldl :: (b -> a -> b) -> b -> Min a -> b # foldl' :: (b -> a -> b) -> b -> Min a -> b # foldr1 :: (a -> a -> a) -> Min a -> a # foldl1 :: (a -> a -> a) -> Min a -> a # elem :: Eq a => a -> Min a -> Bool # maximum :: Ord a => Min a -> a #  | |
| Foldable Max | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Max m -> m # foldMap :: Monoid m => (a -> m) -> Max a -> m # foldMap' :: Monoid m => (a -> m) -> Max a -> m # foldr :: (a -> b -> b) -> b -> Max a -> b # foldr' :: (a -> b -> b) -> b -> Max a -> b # foldl :: (b -> a -> b) -> b -> Max a -> b # foldl' :: (b -> a -> b) -> b -> Max a -> b # foldr1 :: (a -> a -> a) -> Max a -> a # foldl1 :: (a -> a -> a) -> Max a -> a # elem :: Eq a => a -> Max a -> Bool # maximum :: Ord a => Max a -> a #  | |
| Foldable First | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => First m -> m # foldMap :: Monoid m => (a -> m) -> First a -> m # foldMap' :: Monoid m => (a -> m) -> First a -> m # foldr :: (a -> b -> b) -> b -> First a -> b # foldr' :: (a -> b -> b) -> b -> First a -> b # foldl :: (b -> a -> b) -> b -> First a -> b # foldl' :: (b -> a -> b) -> b -> First a -> b # foldr1 :: (a -> a -> a) -> First a -> a # foldl1 :: (a -> a -> a) -> First a -> a # elem :: Eq a => a -> First a -> Bool # maximum :: Ord a => First a -> a # minimum :: Ord a => First a -> a #  | |
| Foldable Last | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Last m -> m # foldMap :: Monoid m => (a -> m) -> Last a -> m # foldMap' :: Monoid m => (a -> m) -> Last a -> m # foldr :: (a -> b -> b) -> b -> Last a -> b # foldr' :: (a -> b -> b) -> b -> Last a -> b # foldl :: (b -> a -> b) -> b -> Last a -> b # foldl' :: (b -> a -> b) -> b -> Last a -> b # foldr1 :: (a -> a -> a) -> Last a -> a # foldl1 :: (a -> a -> a) -> Last a -> a # elem :: Eq a => a -> Last a -> Bool # maximum :: Ord a => Last a -> a #  | |
| Foldable Option | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Option m -> m # foldMap :: Monoid m => (a -> m) -> Option a -> m # foldMap' :: Monoid m => (a -> m) -> Option a -> m # foldr :: (a -> b -> b) -> b -> Option a -> b # foldr' :: (a -> b -> b) -> b -> Option a -> b # foldl :: (b -> a -> b) -> b -> Option a -> b # foldl' :: (b -> a -> b) -> b -> Option a -> b # foldr1 :: (a -> a -> a) -> Option a -> a # foldl1 :: (a -> a -> a) -> Option a -> a # elem :: Eq a => a -> Option a -> Bool # maximum :: Ord a => Option a -> a # minimum :: Ord a => Option a -> a #  | |
| Foldable ZipList | Since: base-4.9.0.0  | 
Defined in Control.Applicative Methods fold :: Monoid m => ZipList m -> m # foldMap :: Monoid m => (a -> m) -> ZipList a -> m # foldMap' :: Monoid m => (a -> m) -> ZipList a -> m # foldr :: (a -> b -> b) -> b -> ZipList a -> b # foldr' :: (a -> b -> b) -> b -> ZipList a -> b # foldl :: (b -> a -> b) -> b -> ZipList a -> b # foldl' :: (b -> a -> b) -> b -> ZipList a -> b # foldr1 :: (a -> a -> a) -> ZipList a -> a # foldl1 :: (a -> a -> a) -> ZipList a -> a # elem :: Eq a => a -> ZipList a -> Bool # maximum :: Ord a => ZipList a -> a # minimum :: Ord a => ZipList a -> a #  | |
| Foldable Identity | Since: base-4.8.0.0  | 
Defined in Data.Functor.Identity Methods fold :: Monoid m => Identity m -> m # foldMap :: Monoid m => (a -> m) -> Identity a -> m # foldMap' :: Monoid m => (a -> m) -> Identity a -> m # foldr :: (a -> b -> b) -> b -> Identity a -> b # foldr' :: (a -> b -> b) -> b -> Identity a -> b # foldl :: (b -> a -> b) -> b -> Identity a -> b # foldl' :: (b -> a -> b) -> b -> Identity a -> b # foldr1 :: (a -> a -> a) -> Identity a -> a # foldl1 :: (a -> a -> a) -> Identity a -> a # elem :: Eq a => a -> Identity a -> Bool # maximum :: Ord a => Identity a -> a # minimum :: Ord a => Identity a -> a #  | |
| Foldable First | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => First m -> m # foldMap :: Monoid m => (a -> m) -> First a -> m # foldMap' :: Monoid m => (a -> m) -> First a -> m # foldr :: (a -> b -> b) -> b -> First a -> b # foldr' :: (a -> b -> b) -> b -> First a -> b # foldl :: (b -> a -> b) -> b -> First a -> b # foldl' :: (b -> a -> b) -> b -> First a -> b # foldr1 :: (a -> a -> a) -> First a -> a # foldl1 :: (a -> a -> a) -> First a -> a # elem :: Eq a => a -> First a -> Bool # maximum :: Ord a => First a -> a # minimum :: Ord a => First a -> a #  | |
| Foldable Last | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Last m -> m # foldMap :: Monoid m => (a -> m) -> Last a -> m # foldMap' :: Monoid m => (a -> m) -> Last a -> m # foldr :: (a -> b -> b) -> b -> Last a -> b # foldr' :: (a -> b -> b) -> b -> Last a -> b # foldl :: (b -> a -> b) -> b -> Last a -> b # foldl' :: (b -> a -> b) -> b -> Last a -> b # foldr1 :: (a -> a -> a) -> Last a -> a # foldl1 :: (a -> a -> a) -> Last a -> a # elem :: Eq a => a -> Last a -> Bool # maximum :: Ord a => Last a -> a #  | |
| Foldable Dual | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Dual m -> m # foldMap :: Monoid m => (a -> m) -> Dual a -> m # foldMap' :: Monoid m => (a -> m) -> Dual a -> m # foldr :: (a -> b -> b) -> b -> Dual a -> b # foldr' :: (a -> b -> b) -> b -> Dual a -> b # foldl :: (b -> a -> b) -> b -> Dual a -> b # foldl' :: (b -> a -> b) -> b -> Dual a -> b # foldr1 :: (a -> a -> a) -> Dual a -> a # foldl1 :: (a -> a -> a) -> Dual a -> a # elem :: Eq a => a -> Dual a -> Bool # maximum :: Ord a => Dual a -> a #  | |
| Foldable Sum | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Sum m -> m # foldMap :: Monoid m => (a -> m) -> Sum a -> m # foldMap' :: Monoid m => (a -> m) -> Sum a -> m # foldr :: (a -> b -> b) -> b -> Sum a -> b # foldr' :: (a -> b -> b) -> b -> Sum a -> b # foldl :: (b -> a -> b) -> b -> Sum a -> b # foldl' :: (b -> a -> b) -> b -> Sum a -> b # foldr1 :: (a -> a -> a) -> Sum a -> a # foldl1 :: (a -> a -> a) -> Sum a -> a # elem :: Eq a => a -> Sum a -> Bool # maximum :: Ord a => Sum a -> a #  | |
| Foldable Product | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Product m -> m # foldMap :: Monoid m => (a -> m) -> Product a -> m # foldMap' :: Monoid m => (a -> m) -> Product a -> m # foldr :: (a -> b -> b) -> b -> Product a -> b # foldr' :: (a -> b -> b) -> b -> Product a -> b # foldl :: (b -> a -> b) -> b -> Product a -> b # foldl' :: (b -> a -> b) -> b -> Product a -> b # foldr1 :: (a -> a -> a) -> Product a -> a # foldl1 :: (a -> a -> a) -> Product a -> a # elem :: Eq a => a -> Product a -> Bool # maximum :: Ord a => Product a -> a # minimum :: Ord a => Product a -> a #  | |
| Foldable Down | Since: base-4.12.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Down m -> m # foldMap :: Monoid m => (a -> m) -> Down a -> m # foldMap' :: Monoid m => (a -> m) -> Down a -> m # foldr :: (a -> b -> b) -> b -> Down a -> b # foldr' :: (a -> b -> b) -> b -> Down a -> b # foldl :: (b -> a -> b) -> b -> Down a -> b # foldl' :: (b -> a -> b) -> b -> Down a -> b # foldr1 :: (a -> a -> a) -> Down a -> a # foldl1 :: (a -> a -> a) -> Down a -> a # elem :: Eq a => a -> Down a -> Bool # maximum :: Ord a => Down a -> a #  | |
| Foldable NonEmpty | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => NonEmpty m -> m # foldMap :: Monoid m => (a -> m) -> NonEmpty a -> m # foldMap' :: Monoid m => (a -> m) -> NonEmpty a -> m # foldr :: (a -> b -> b) -> b -> NonEmpty a -> b # foldr' :: (a -> b -> b) -> b -> NonEmpty a -> b # foldl :: (b -> a -> b) -> b -> NonEmpty a -> b # foldl' :: (b -> a -> b) -> b -> NonEmpty a -> b # foldr1 :: (a -> a -> a) -> NonEmpty a -> a # foldl1 :: (a -> a -> a) -> NonEmpty a -> a # elem :: Eq a => a -> NonEmpty a -> Bool # maximum :: Ord a => NonEmpty a -> a # minimum :: Ord a => NonEmpty a -> a #  | |
| Foldable IntMap | Folds in order of increasing key.  | 
Defined in Data.IntMap.Internal Methods fold :: Monoid m => IntMap m -> m # foldMap :: Monoid m => (a -> m) -> IntMap a -> m # foldMap' :: Monoid m => (a -> m) -> IntMap a -> m # foldr :: (a -> b -> b) -> b -> IntMap a -> b # foldr' :: (a -> b -> b) -> b -> IntMap a -> b # foldl :: (b -> a -> b) -> b -> IntMap a -> b # foldl' :: (b -> a -> b) -> b -> IntMap a -> b # foldr1 :: (a -> a -> a) -> IntMap a -> a # foldl1 :: (a -> a -> a) -> IntMap a -> a # elem :: Eq a => a -> IntMap a -> Bool # maximum :: Ord a => IntMap a -> a # minimum :: Ord a => IntMap a -> a #  | |
| Foldable SCC | Since: containers-0.5.9  | 
Defined in Data.Graph Methods fold :: Monoid m => SCC m -> m # foldMap :: Monoid m => (a -> m) -> SCC a -> m # foldMap' :: Monoid m => (a -> m) -> SCC a -> m # foldr :: (a -> b -> b) -> b -> SCC a -> b # foldr' :: (a -> b -> b) -> b -> SCC a -> b # foldl :: (b -> a -> b) -> b -> SCC a -> b # foldl' :: (b -> a -> b) -> b -> SCC a -> b # foldr1 :: (a -> a -> a) -> SCC a -> a # foldl1 :: (a -> a -> a) -> SCC a -> a # elem :: Eq a => a -> SCC a -> Bool # maximum :: Ord a => SCC a -> a #  | |
| Foldable Tree | |
Defined in Data.Tree Methods fold :: Monoid m => Tree m -> m # foldMap :: Monoid m => (a -> m) -> Tree a -> m # foldMap' :: Monoid m => (a -> m) -> Tree a -> m # foldr :: (a -> b -> b) -> b -> Tree a -> b # foldr' :: (a -> b -> b) -> b -> Tree a -> b # foldl :: (b -> a -> b) -> b -> Tree a -> b # foldl' :: (b -> a -> b) -> b -> Tree a -> b # foldr1 :: (a -> a -> a) -> Tree a -> a # foldl1 :: (a -> a -> a) -> Tree a -> a # elem :: Eq a => a -> Tree a -> Bool # maximum :: Ord a => Tree a -> a #  | |
| Foldable Seq | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => Seq m -> m # foldMap :: Monoid m => (a -> m) -> Seq a -> m # foldMap' :: Monoid m => (a -> m) -> Seq a -> m # foldr :: (a -> b -> b) -> b -> Seq a -> b # foldr' :: (a -> b -> b) -> b -> Seq a -> b # foldl :: (b -> a -> b) -> b -> Seq a -> b # foldl' :: (b -> a -> b) -> b -> Seq a -> b # foldr1 :: (a -> a -> a) -> Seq a -> a # foldl1 :: (a -> a -> a) -> Seq a -> a # elem :: Eq a => a -> Seq a -> Bool # maximum :: Ord a => Seq a -> a #  | |
| Foldable FingerTree | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => FingerTree m -> m # foldMap :: Monoid m => (a -> m) -> FingerTree a -> m # foldMap' :: Monoid m => (a -> m) -> FingerTree a -> m # foldr :: (a -> b -> b) -> b -> FingerTree a -> b # foldr' :: (a -> b -> b) -> b -> FingerTree a -> b # foldl :: (b -> a -> b) -> b -> FingerTree a -> b # foldl' :: (b -> a -> b) -> b -> FingerTree a -> b # foldr1 :: (a -> a -> a) -> FingerTree a -> a # foldl1 :: (a -> a -> a) -> FingerTree a -> a # toList :: FingerTree a -> [a] # null :: FingerTree a -> Bool # length :: FingerTree a -> Int # elem :: Eq a => a -> FingerTree a -> Bool # maximum :: Ord a => FingerTree a -> a # minimum :: Ord a => FingerTree a -> a # sum :: Num a => FingerTree a -> a # product :: Num a => FingerTree a -> a #  | |
| Foldable Digit | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => Digit m -> m # foldMap :: Monoid m => (a -> m) -> Digit a -> m # foldMap' :: Monoid m => (a -> m) -> Digit a -> m # foldr :: (a -> b -> b) -> b -> Digit a -> b # foldr' :: (a -> b -> b) -> b -> Digit a -> b # foldl :: (b -> a -> b) -> b -> Digit a -> b # foldl' :: (b -> a -> b) -> b -> Digit a -> b # foldr1 :: (a -> a -> a) -> Digit a -> a # foldl1 :: (a -> a -> a) -> Digit a -> a # elem :: Eq a => a -> Digit a -> Bool # maximum :: Ord a => Digit a -> a # minimum :: Ord a => Digit a -> a #  | |
| Foldable Node | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => Node m -> m # foldMap :: Monoid m => (a -> m) -> Node a -> m # foldMap' :: Monoid m => (a -> m) -> Node a -> m # foldr :: (a -> b -> b) -> b -> Node a -> b # foldr' :: (a -> b -> b) -> b -> Node a -> b # foldl :: (b -> a -> b) -> b -> Node a -> b # foldl' :: (b -> a -> b) -> b -> Node a -> b # foldr1 :: (a -> a -> a) -> Node a -> a # foldl1 :: (a -> a -> a) -> Node a -> a # elem :: Eq a => a -> Node a -> Bool # maximum :: Ord a => Node a -> a #  | |
| Foldable Elem | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => Elem m -> m # foldMap :: Monoid m => (a -> m) -> Elem a -> m # foldMap' :: Monoid m => (a -> m) -> Elem a -> m # foldr :: (a -> b -> b) -> b -> Elem a -> b # foldr' :: (a -> b -> b) -> b -> Elem a -> b # foldl :: (b -> a -> b) -> b -> Elem a -> b # foldl' :: (b -> a -> b) -> b -> Elem a -> b # foldr1 :: (a -> a -> a) -> Elem a -> a # foldl1 :: (a -> a -> a) -> Elem a -> a # elem :: Eq a => a -> Elem a -> Bool # maximum :: Ord a => Elem a -> a #  | |
| Foldable ViewL | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => ViewL m -> m # foldMap :: Monoid m => (a -> m) -> ViewL a -> m # foldMap' :: Monoid m => (a -> m) -> ViewL a -> m # foldr :: (a -> b -> b) -> b -> ViewL a -> b # foldr' :: (a -> b -> b) -> b -> ViewL a -> b # foldl :: (b -> a -> b) -> b -> ViewL a -> b # foldl' :: (b -> a -> b) -> b -> ViewL a -> b # foldr1 :: (a -> a -> a) -> ViewL a -> a # foldl1 :: (a -> a -> a) -> ViewL a -> a # elem :: Eq a => a -> ViewL a -> Bool # maximum :: Ord a => ViewL a -> a # minimum :: Ord a => ViewL a -> a #  | |
| Foldable ViewR | |
Defined in Data.Sequence.Internal Methods fold :: Monoid m => ViewR m -> m # foldMap :: Monoid m => (a -> m) -> ViewR a -> m # foldMap' :: Monoid m => (a -> m) -> ViewR a -> m # foldr :: (a -> b -> b) -> b -> ViewR a -> b # foldr' :: (a -> b -> b) -> b -> ViewR a -> b # foldl :: (b -> a -> b) -> b -> ViewR a -> b # foldl' :: (b -> a -> b) -> b -> ViewR a -> b # foldr1 :: (a -> a -> a) -> ViewR a -> a # foldl1 :: (a -> a -> a) -> ViewR a -> a # elem :: Eq a => a -> ViewR a -> Bool # maximum :: Ord a => ViewR a -> a # minimum :: Ord a => ViewR a -> a #  | |
| Foldable Set | Folds in order of increasing key.  | 
Defined in Data.Set.Internal Methods fold :: Monoid m => Set m -> m # foldMap :: Monoid m => (a -> m) -> Set a -> m # foldMap' :: Monoid m => (a -> m) -> Set a -> m # foldr :: (a -> b -> b) -> b -> Set a -> b # foldr' :: (a -> b -> b) -> b -> Set a -> b # foldl :: (b -> a -> b) -> b -> Set a -> b # foldl' :: (b -> a -> b) -> b -> Set a -> b # foldr1 :: (a -> a -> a) -> Set a -> a # foldl1 :: (a -> a -> a) -> Set a -> a # elem :: Eq a => a -> Set a -> Bool # maximum :: Ord a => Set a -> a #  | |
| Foldable Hashed | |
Defined in Data.Hashable.Class Methods fold :: Monoid m => Hashed m -> m # foldMap :: Monoid m => (a -> m) -> Hashed a -> m # foldMap' :: Monoid m => (a -> m) -> Hashed a -> m # foldr :: (a -> b -> b) -> b -> Hashed a -> b # foldr' :: (a -> b -> b) -> b -> Hashed a -> b # foldl :: (b -> a -> b) -> b -> Hashed a -> b # foldl' :: (b -> a -> b) -> b -> Hashed a -> b # foldr1 :: (a -> a -> a) -> Hashed a -> a # foldl1 :: (a -> a -> a) -> Hashed a -> a # elem :: Eq a => a -> Hashed a -> Bool # maximum :: Ord a => Hashed a -> a # minimum :: Ord a => Hashed a -> a #  | |
| Foldable HashSet | |
Defined in Data.HashSet.Internal Methods fold :: Monoid m => HashSet m -> m # foldMap :: Monoid m => (a -> m) -> HashSet a -> m # foldMap' :: Monoid m => (a -> m) -> HashSet a -> m # foldr :: (a -> b -> b) -> b -> HashSet a -> b # foldr' :: (a -> b -> b) -> b -> HashSet a -> b # foldl :: (b -> a -> b) -> b -> HashSet a -> b # foldl' :: (b -> a -> b) -> b -> HashSet a -> b # foldr1 :: (a -> a -> a) -> HashSet a -> a # foldl1 :: (a -> a -> a) -> HashSet a -> a # elem :: Eq a => a -> HashSet a -> Bool # maximum :: Ord a => HashSet a -> a # minimum :: Ord a => HashSet a -> a #  | |
| Foldable StateArray Source # | |
Defined in Language.Lexer.Tlex.Machine.State Methods fold :: Monoid m => StateArray m -> m # foldMap :: Monoid m => (a -> m) -> StateArray a -> m # foldMap' :: Monoid m => (a -> m) -> StateArray a -> m # foldr :: (a -> b -> b) -> b -> StateArray a -> b # foldr' :: (a -> b -> b) -> b -> StateArray a -> b # foldl :: (b -> a -> b) -> b -> StateArray a -> b # foldl' :: (b -> a -> b) -> b -> StateArray a -> b # foldr1 :: (a -> a -> a) -> StateArray a -> a # foldl1 :: (a -> a -> a) -> StateArray a -> a # toList :: StateArray a -> [a] # null :: StateArray a -> Bool # length :: StateArray a -> Int # elem :: Eq a => a -> StateArray a -> Bool # maximum :: Ord a => StateArray a -> a # minimum :: Ord a => StateArray a -> a # sum :: Num a => StateArray a -> a # product :: Num a => StateArray a -> a #  | |
| Foldable Bag Source # | |
Defined in Language.Lexer.Tlex.Data.Bag Methods fold :: Monoid m => Bag m -> m # foldMap :: Monoid m => (a -> m) -> Bag a -> m # foldMap' :: Monoid m => (a -> m) -> Bag a -> m # foldr :: (a -> b -> b) -> b -> Bag a -> b # foldr' :: (a -> b -> b) -> b -> Bag a -> b # foldl :: (b -> a -> b) -> b -> Bag a -> b # foldl' :: (b -> a -> b) -> b -> Bag a -> b # foldr1 :: (a -> a -> a) -> Bag a -> a # foldl1 :: (a -> a -> a) -> Bag a -> a # elem :: Eq a => a -> Bag a -> Bool # maximum :: Ord a => Bag a -> a #  | |
| Foldable (Either a) | Since: base-4.7.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Either a m -> m # foldMap :: Monoid m => (a0 -> m) -> Either a a0 -> m # foldMap' :: Monoid m => (a0 -> m) -> Either a a0 -> m # foldr :: (a0 -> b -> b) -> b -> Either a a0 -> b # foldr' :: (a0 -> b -> b) -> b -> Either a a0 -> b # foldl :: (b -> a0 -> b) -> b -> Either a a0 -> b # foldl' :: (b -> a0 -> b) -> b -> Either a a0 -> b # foldr1 :: (a0 -> a0 -> a0) -> Either a a0 -> a0 # foldl1 :: (a0 -> a0 -> a0) -> Either a a0 -> a0 # toList :: Either a a0 -> [a0] # length :: Either a a0 -> Int # elem :: Eq a0 => a0 -> Either a a0 -> Bool # maximum :: Ord a0 => Either a a0 -> a0 # minimum :: Ord a0 => Either a a0 -> a0 #  | |
| Foldable (V1 :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => V1 m -> m # foldMap :: Monoid m => (a -> m) -> V1 a -> m # foldMap' :: Monoid m => (a -> m) -> V1 a -> m # foldr :: (a -> b -> b) -> b -> V1 a -> b # foldr' :: (a -> b -> b) -> b -> V1 a -> b # foldl :: (b -> a -> b) -> b -> V1 a -> b # foldl' :: (b -> a -> b) -> b -> V1 a -> b # foldr1 :: (a -> a -> a) -> V1 a -> a # foldl1 :: (a -> a -> a) -> V1 a -> a # elem :: Eq a => a -> V1 a -> Bool # maximum :: Ord a => V1 a -> a #  | |
| Foldable (U1 :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => U1 m -> m # foldMap :: Monoid m => (a -> m) -> U1 a -> m # foldMap' :: Monoid m => (a -> m) -> U1 a -> m # foldr :: (a -> b -> b) -> b -> U1 a -> b # foldr' :: (a -> b -> b) -> b -> U1 a -> b # foldl :: (b -> a -> b) -> b -> U1 a -> b # foldl' :: (b -> a -> b) -> b -> U1 a -> b # foldr1 :: (a -> a -> a) -> U1 a -> a # foldl1 :: (a -> a -> a) -> U1 a -> a # elem :: Eq a => a -> U1 a -> Bool # maximum :: Ord a => U1 a -> a #  | |
| Foldable (UAddr :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UAddr m -> m # foldMap :: Monoid m => (a -> m) -> UAddr a -> m # foldMap' :: Monoid m => (a -> m) -> UAddr a -> m # foldr :: (a -> b -> b) -> b -> UAddr a -> b # foldr' :: (a -> b -> b) -> b -> UAddr a -> b # foldl :: (b -> a -> b) -> b -> UAddr a -> b # foldl' :: (b -> a -> b) -> b -> UAddr a -> b # foldr1 :: (a -> a -> a) -> UAddr a -> a # foldl1 :: (a -> a -> a) -> UAddr a -> a # elem :: Eq a => a -> UAddr a -> Bool # maximum :: Ord a => UAddr a -> a # minimum :: Ord a => UAddr a -> a #  | |
| Foldable (UChar :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UChar m -> m # foldMap :: Monoid m => (a -> m) -> UChar a -> m # foldMap' :: Monoid m => (a -> m) -> UChar a -> m # foldr :: (a -> b -> b) -> b -> UChar a -> b # foldr' :: (a -> b -> b) -> b -> UChar a -> b # foldl :: (b -> a -> b) -> b -> UChar a -> b # foldl' :: (b -> a -> b) -> b -> UChar a -> b # foldr1 :: (a -> a -> a) -> UChar a -> a # foldl1 :: (a -> a -> a) -> UChar a -> a # elem :: Eq a => a -> UChar a -> Bool # maximum :: Ord a => UChar a -> a # minimum :: Ord a => UChar a -> a #  | |
| Foldable (UDouble :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UDouble m -> m # foldMap :: Monoid m => (a -> m) -> UDouble a -> m # foldMap' :: Monoid m => (a -> m) -> UDouble a -> m # foldr :: (a -> b -> b) -> b -> UDouble a -> b # foldr' :: (a -> b -> b) -> b -> UDouble a -> b # foldl :: (b -> a -> b) -> b -> UDouble a -> b # foldl' :: (b -> a -> b) -> b -> UDouble a -> b # foldr1 :: (a -> a -> a) -> UDouble a -> a # foldl1 :: (a -> a -> a) -> UDouble a -> a # elem :: Eq a => a -> UDouble a -> Bool # maximum :: Ord a => UDouble a -> a # minimum :: Ord a => UDouble a -> a #  | |
| Foldable (UFloat :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UFloat m -> m # foldMap :: Monoid m => (a -> m) -> UFloat a -> m # foldMap' :: Monoid m => (a -> m) -> UFloat a -> m # foldr :: (a -> b -> b) -> b -> UFloat a -> b # foldr' :: (a -> b -> b) -> b -> UFloat a -> b # foldl :: (b -> a -> b) -> b -> UFloat a -> b # foldl' :: (b -> a -> b) -> b -> UFloat a -> b # foldr1 :: (a -> a -> a) -> UFloat a -> a # foldl1 :: (a -> a -> a) -> UFloat a -> a # elem :: Eq a => a -> UFloat a -> Bool # maximum :: Ord a => UFloat a -> a # minimum :: Ord a => UFloat a -> a #  | |
| Foldable (UInt :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UInt m -> m # foldMap :: Monoid m => (a -> m) -> UInt a -> m # foldMap' :: Monoid m => (a -> m) -> UInt a -> m # foldr :: (a -> b -> b) -> b -> UInt a -> b # foldr' :: (a -> b -> b) -> b -> UInt a -> b # foldl :: (b -> a -> b) -> b -> UInt a -> b # foldl' :: (b -> a -> b) -> b -> UInt a -> b # foldr1 :: (a -> a -> a) -> UInt a -> a # foldl1 :: (a -> a -> a) -> UInt a -> a # elem :: Eq a => a -> UInt a -> Bool # maximum :: Ord a => UInt a -> a #  | |
| Foldable (UWord :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UWord m -> m # foldMap :: Monoid m => (a -> m) -> UWord a -> m # foldMap' :: Monoid m => (a -> m) -> UWord a -> m # foldr :: (a -> b -> b) -> b -> UWord a -> b # foldr' :: (a -> b -> b) -> b -> UWord a -> b # foldl :: (b -> a -> b) -> b -> UWord a -> b # foldl' :: (b -> a -> b) -> b -> UWord a -> b # foldr1 :: (a -> a -> a) -> UWord a -> a # foldl1 :: (a -> a -> a) -> UWord a -> a # elem :: Eq a => a -> UWord a -> Bool # maximum :: Ord a => UWord a -> a # minimum :: Ord a => UWord a -> a #  | |
| Foldable ((,) a) | Since: base-4.7.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => (a, m) -> m # foldMap :: Monoid m => (a0 -> m) -> (a, a0) -> m # foldMap' :: Monoid m => (a0 -> m) -> (a, a0) -> m # foldr :: (a0 -> b -> b) -> b -> (a, a0) -> b # foldr' :: (a0 -> b -> b) -> b -> (a, a0) -> b # foldl :: (b -> a0 -> b) -> b -> (a, a0) -> b # foldl' :: (b -> a0 -> b) -> b -> (a, a0) -> b # foldr1 :: (a0 -> a0 -> a0) -> (a, a0) -> a0 # foldl1 :: (a0 -> a0 -> a0) -> (a, a0) -> a0 # elem :: Eq a0 => a0 -> (a, a0) -> Bool # maximum :: Ord a0 => (a, a0) -> a0 # minimum :: Ord a0 => (a, a0) -> a0 #  | |
| Foldable (Array i) | Since: base-4.8.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Array i m -> m # foldMap :: Monoid m => (a -> m) -> Array i a -> m # foldMap' :: Monoid m => (a -> m) -> Array i a -> m # foldr :: (a -> b -> b) -> b -> Array i a -> b # foldr' :: (a -> b -> b) -> b -> Array i a -> b # foldl :: (b -> a -> b) -> b -> Array i a -> b # foldl' :: (b -> a -> b) -> b -> Array i a -> b # foldr1 :: (a -> a -> a) -> Array i a -> a # foldl1 :: (a -> a -> a) -> Array i a -> a # elem :: Eq a => a -> Array i a -> Bool # maximum :: Ord a => Array i a -> a # minimum :: Ord a => Array i a -> a #  | |
| Foldable (Arg a) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods fold :: Monoid m => Arg a m -> m # foldMap :: Monoid m => (a0 -> m) -> Arg a a0 -> m # foldMap' :: Monoid m => (a0 -> m) -> Arg a a0 -> m # foldr :: (a0 -> b -> b) -> b -> Arg a a0 -> b # foldr' :: (a0 -> b -> b) -> b -> Arg a a0 -> b # foldl :: (b -> a0 -> b) -> b -> Arg a a0 -> b # foldl' :: (b -> a0 -> b) -> b -> Arg a a0 -> b # foldr1 :: (a0 -> a0 -> a0) -> Arg a a0 -> a0 # foldl1 :: (a0 -> a0 -> a0) -> Arg a a0 -> a0 # elem :: Eq a0 => a0 -> Arg a a0 -> Bool # maximum :: Ord a0 => Arg a a0 -> a0 # minimum :: Ord a0 => Arg a a0 -> a0 #  | |
| Foldable (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Proxy m -> m # foldMap :: Monoid m => (a -> m) -> Proxy a -> m # foldMap' :: Monoid m => (a -> m) -> Proxy a -> m # foldr :: (a -> b -> b) -> b -> Proxy a -> b # foldr' :: (a -> b -> b) -> b -> Proxy a -> b # foldl :: (b -> a -> b) -> b -> Proxy a -> b # foldl' :: (b -> a -> b) -> b -> Proxy a -> b # foldr1 :: (a -> a -> a) -> Proxy a -> a # foldl1 :: (a -> a -> a) -> Proxy a -> a # elem :: Eq a => a -> Proxy a -> Bool # maximum :: Ord a => Proxy a -> a # minimum :: Ord a => Proxy a -> a #  | |
| Foldable (Map k) | Folds in order of increasing key.  | 
Defined in Data.Map.Internal Methods fold :: Monoid m => Map k m -> m # foldMap :: Monoid m => (a -> m) -> Map k a -> m # foldMap' :: Monoid m => (a -> m) -> Map k a -> m # foldr :: (a -> b -> b) -> b -> Map k a -> b # foldr' :: (a -> b -> b) -> b -> Map k a -> b # foldl :: (b -> a -> b) -> b -> Map k a -> b # foldl' :: (b -> a -> b) -> b -> Map k a -> b # foldr1 :: (a -> a -> a) -> Map k a -> a # foldl1 :: (a -> a -> a) -> Map k a -> a # elem :: Eq a => a -> Map k a -> Bool # maximum :: Ord a => Map k a -> a # minimum :: Ord a => Map k a -> a #  | |
| Foldable (HashMap k) | |
Defined in Data.HashMap.Internal Methods fold :: Monoid m => HashMap k m -> m # foldMap :: Monoid m => (a -> m) -> HashMap k a -> m # foldMap' :: Monoid m => (a -> m) -> HashMap k a -> m # foldr :: (a -> b -> b) -> b -> HashMap k a -> b # foldr' :: (a -> b -> b) -> b -> HashMap k a -> b # foldl :: (b -> a -> b) -> b -> HashMap k a -> b # foldl' :: (b -> a -> b) -> b -> HashMap k a -> b # foldr1 :: (a -> a -> a) -> HashMap k a -> a # foldl1 :: (a -> a -> a) -> HashMap k a -> a # toList :: HashMap k a -> [a] # length :: HashMap k a -> Int # elem :: Eq a => a -> HashMap k a -> Bool # maximum :: Ord a => HashMap k a -> a # minimum :: Ord a => HashMap k a -> a #  | |
| Foldable f => Foldable (Rec1 f) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Rec1 f m -> m # foldMap :: Monoid m => (a -> m) -> Rec1 f a -> m # foldMap' :: Monoid m => (a -> m) -> Rec1 f a -> m # foldr :: (a -> b -> b) -> b -> Rec1 f a -> b # foldr' :: (a -> b -> b) -> b -> Rec1 f a -> b # foldl :: (b -> a -> b) -> b -> Rec1 f a -> b # foldl' :: (b -> a -> b) -> b -> Rec1 f a -> b # foldr1 :: (a -> a -> a) -> Rec1 f a -> a # foldl1 :: (a -> a -> a) -> Rec1 f a -> a # elem :: Eq a => a -> Rec1 f a -> Bool # maximum :: Ord a => Rec1 f a -> a # minimum :: Ord a => Rec1 f a -> a #  | |
| Foldable (Const m :: Type -> Type) | Since: base-4.7.0.0  | 
Defined in Data.Functor.Const Methods fold :: Monoid m0 => Const m m0 -> m0 # foldMap :: Monoid m0 => (a -> m0) -> Const m a -> m0 # foldMap' :: Monoid m0 => (a -> m0) -> Const m a -> m0 # foldr :: (a -> b -> b) -> b -> Const m a -> b # foldr' :: (a -> b -> b) -> b -> Const m a -> b # foldl :: (b -> a -> b) -> b -> Const m a -> b # foldl' :: (b -> a -> b) -> b -> Const m a -> b # foldr1 :: (a -> a -> a) -> Const m a -> a # foldl1 :: (a -> a -> a) -> Const m a -> a # elem :: Eq a => a -> Const m a -> Bool # maximum :: Ord a => Const m a -> a # minimum :: Ord a => Const m a -> a #  | |
| Foldable f => Foldable (Ap f) | Since: base-4.12.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Ap f m -> m # foldMap :: Monoid m => (a -> m) -> Ap f a -> m # foldMap' :: Monoid m => (a -> m) -> Ap f a -> m # foldr :: (a -> b -> b) -> b -> Ap f a -> b # foldr' :: (a -> b -> b) -> b -> Ap f a -> b # foldl :: (b -> a -> b) -> b -> Ap f a -> b # foldl' :: (b -> a -> b) -> b -> Ap f a -> b # foldr1 :: (a -> a -> a) -> Ap f a -> a # foldl1 :: (a -> a -> a) -> Ap f a -> a # elem :: Eq a => a -> Ap f a -> Bool # maximum :: Ord a => Ap f a -> a #  | |
| Foldable f => Foldable (Alt f) | Since: base-4.12.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Alt f m -> m # foldMap :: Monoid m => (a -> m) -> Alt f a -> m # foldMap' :: Monoid m => (a -> m) -> Alt f a -> m # foldr :: (a -> b -> b) -> b -> Alt f a -> b # foldr' :: (a -> b -> b) -> b -> Alt f a -> b # foldl :: (b -> a -> b) -> b -> Alt f a -> b # foldl' :: (b -> a -> b) -> b -> Alt f a -> b # foldr1 :: (a -> a -> a) -> Alt f a -> a # foldl1 :: (a -> a -> a) -> Alt f a -> a # elem :: Eq a => a -> Alt f a -> Bool # maximum :: Ord a => Alt f a -> a # minimum :: Ord a => Alt f a -> a #  | |
| Foldable (K1 i c :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => K1 i c m -> m # foldMap :: Monoid m => (a -> m) -> K1 i c a -> m # foldMap' :: Monoid m => (a -> m) -> K1 i c a -> m # foldr :: (a -> b -> b) -> b -> K1 i c a -> b # foldr' :: (a -> b -> b) -> b -> K1 i c a -> b # foldl :: (b -> a -> b) -> b -> K1 i c a -> b # foldl' :: (b -> a -> b) -> b -> K1 i c a -> b # foldr1 :: (a -> a -> a) -> K1 i c a -> a # foldl1 :: (a -> a -> a) -> K1 i c a -> a # elem :: Eq a => a -> K1 i c a -> Bool # maximum :: Ord a => K1 i c a -> a # minimum :: Ord a => K1 i c a -> a #  | |
| (Foldable f, Foldable g) => Foldable (f :+: g) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => (f :+: g) m -> m # foldMap :: Monoid m => (a -> m) -> (f :+: g) a -> m # foldMap' :: Monoid m => (a -> m) -> (f :+: g) a -> m # foldr :: (a -> b -> b) -> b -> (f :+: g) a -> b # foldr' :: (a -> b -> b) -> b -> (f :+: g) a -> b # foldl :: (b -> a -> b) -> b -> (f :+: g) a -> b # foldl' :: (b -> a -> b) -> b -> (f :+: g) a -> b # foldr1 :: (a -> a -> a) -> (f :+: g) a -> a # foldl1 :: (a -> a -> a) -> (f :+: g) a -> a # toList :: (f :+: g) a -> [a] # length :: (f :+: g) a -> Int # elem :: Eq a => a -> (f :+: g) a -> Bool # maximum :: Ord a => (f :+: g) a -> a # minimum :: Ord a => (f :+: g) a -> a #  | |
| (Foldable f, Foldable g) => Foldable (f :*: g) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => (f :*: g) m -> m # foldMap :: Monoid m => (a -> m) -> (f :*: g) a -> m # foldMap' :: Monoid m => (a -> m) -> (f :*: g) a -> m # foldr :: (a -> b -> b) -> b -> (f :*: g) a -> b # foldr' :: (a -> b -> b) -> b -> (f :*: g) a -> b # foldl :: (b -> a -> b) -> b -> (f :*: g) a -> b # foldl' :: (b -> a -> b) -> b -> (f :*: g) a -> b # foldr1 :: (a -> a -> a) -> (f :*: g) a -> a # foldl1 :: (a -> a -> a) -> (f :*: g) a -> a # toList :: (f :*: g) a -> [a] # length :: (f :*: g) a -> Int # elem :: Eq a => a -> (f :*: g) a -> Bool # maximum :: Ord a => (f :*: g) a -> a # minimum :: Ord a => (f :*: g) a -> a #  | |
| (Foldable f, Foldable g) => Foldable (Product f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Product Methods fold :: Monoid m => Product f g m -> m # foldMap :: Monoid m => (a -> m) -> Product f g a -> m # foldMap' :: Monoid m => (a -> m) -> Product f g a -> m # foldr :: (a -> b -> b) -> b -> Product f g a -> b # foldr' :: (a -> b -> b) -> b -> Product f g a -> b # foldl :: (b -> a -> b) -> b -> Product f g a -> b # foldl' :: (b -> a -> b) -> b -> Product f g a -> b # foldr1 :: (a -> a -> a) -> Product f g a -> a # foldl1 :: (a -> a -> a) -> Product f g a -> a # toList :: Product f g a -> [a] # null :: Product f g a -> Bool # length :: Product f g a -> Int # elem :: Eq a => a -> Product f g a -> Bool # maximum :: Ord a => Product f g a -> a # minimum :: Ord a => Product f g a -> a #  | |
| (Foldable f, Foldable g) => Foldable (Sum f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Sum Methods fold :: Monoid m => Sum f g m -> m # foldMap :: Monoid m => (a -> m) -> Sum f g a -> m # foldMap' :: Monoid m => (a -> m) -> Sum f g a -> m # foldr :: (a -> b -> b) -> b -> Sum f g a -> b # foldr' :: (a -> b -> b) -> b -> Sum f g a -> b # foldl :: (b -> a -> b) -> b -> Sum f g a -> b # foldl' :: (b -> a -> b) -> b -> Sum f g a -> b # foldr1 :: (a -> a -> a) -> Sum f g a -> a # foldl1 :: (a -> a -> a) -> Sum f g a -> a # elem :: Eq a => a -> Sum f g a -> Bool # maximum :: Ord a => Sum f g a -> a # minimum :: Ord a => Sum f g a -> a #  | |
| Foldable f => Foldable (M1 i c f) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => M1 i c f m -> m # foldMap :: Monoid m => (a -> m) -> M1 i c f a -> m # foldMap' :: Monoid m => (a -> m) -> M1 i c f a -> m # foldr :: (a -> b -> b) -> b -> M1 i c f a -> b # foldr' :: (a -> b -> b) -> b -> M1 i c f a -> b # foldl :: (b -> a -> b) -> b -> M1 i c f a -> b # foldl' :: (b -> a -> b) -> b -> M1 i c f a -> b # foldr1 :: (a -> a -> a) -> M1 i c f a -> a # foldl1 :: (a -> a -> a) -> M1 i c f a -> a # elem :: Eq a => a -> M1 i c f a -> Bool # maximum :: Ord a => M1 i c f a -> a # minimum :: Ord a => M1 i c f a -> a #  | |
| (Foldable f, Foldable g) => Foldable (f :.: g) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => (f :.: g) m -> m # foldMap :: Monoid m => (a -> m) -> (f :.: g) a -> m # foldMap' :: Monoid m => (a -> m) -> (f :.: g) a -> m # foldr :: (a -> b -> b) -> b -> (f :.: g) a -> b # foldr' :: (a -> b -> b) -> b -> (f :.: g) a -> b # foldl :: (b -> a -> b) -> b -> (f :.: g) a -> b # foldl' :: (b -> a -> b) -> b -> (f :.: g) a -> b # foldr1 :: (a -> a -> a) -> (f :.: g) a -> a # foldl1 :: (a -> a -> a) -> (f :.: g) a -> a # toList :: (f :.: g) a -> [a] # length :: (f :.: g) a -> Int # elem :: Eq a => a -> (f :.: g) a -> Bool # maximum :: Ord a => (f :.: g) a -> a # minimum :: Ord a => (f :.: g) a -> a #  | |
| (Foldable f, Foldable g) => Foldable (Compose f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Compose Methods fold :: Monoid m => Compose f g m -> m # foldMap :: Monoid m => (a -> m) -> Compose f g a -> m # foldMap' :: Monoid m => (a -> m) -> Compose f g a -> m # foldr :: (a -> b -> b) -> b -> Compose f g a -> b # foldr' :: (a -> b -> b) -> b -> Compose f g a -> b # foldl :: (b -> a -> b) -> b -> Compose f g a -> b # foldl' :: (b -> a -> b) -> b -> Compose f g a -> b # foldr1 :: (a -> a -> a) -> Compose f g a -> a # foldl1 :: (a -> a -> a) -> Compose f g a -> a # toList :: Compose f g a -> [a] # null :: Compose f g a -> Bool # length :: Compose f g a -> Int # elem :: Eq a => a -> Compose f g a -> Bool # maximum :: Ord a => Compose f g a -> a # minimum :: Ord a => Compose f g a -> a #  | |
minimumBy :: Foldable t => (a -> a -> Ordering) -> t a -> a #
The least element of a non-empty structure with respect to the given comparison function.
maximumBy :: Foldable t => (a -> a -> Ordering) -> t a -> a #
The largest element of a non-empty structure with respect to the given comparison function.
all :: Foldable t => (a -> Bool) -> t a -> Bool #
Determines whether all elements of the structure satisfy the predicate.
any :: Foldable t => (a -> Bool) -> t a -> Bool #
Determines whether any element of the structure satisfies the predicate.
concatMap :: Foldable t => (a -> [b]) -> t a -> [b] #
Map a function over all the elements of a container and concatenate the resulting lists.
concat :: Foldable t => t [a] -> [a] #
The concatenation of all the elements of a container of lists.
asum :: (Foldable t, Alternative f) => t (f a) -> f a #
The sum of a collection of actions, generalizing concat.
>>>asum [Just "Hello", Nothing, Just "World"]Just "Hello"
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.
sequenceA_ :: (Foldable t, Applicative f) => t (f a) -> f () #
Evaluate each action in the structure from left to right, and
 ignore the results. For a version that doesn't ignore the results
 see sequenceA.
for_ :: (Foldable t, Applicative f) => t a -> (a -> f b) -> f () #
traverse_ :: (Foldable t, Applicative f) => (a -> f b) -> t a -> f () #
Map each element of a structure to an action, evaluate these
 actions from left to right, and ignore the results. For a version
 that doesn't ignore the results see traverse.
foldlM :: (Foldable t, Monad m) => (b -> a -> m b) -> b -> t a -> m b #
Monadic fold over the elements of a structure, associating to the left, i.e. from left to right.
foldrM :: (Foldable t, Monad m) => (a -> b -> m b) -> b -> t a -> m b #
Monadic fold over the elements of a structure, associating to the right, i.e. from right to left.
 is the least fixed point of the function fix ff,
 i.e. the least defined x such that f x = x.
For example, we can write the factorial function using direct recursion as
>>>let fac n = if n <= 1 then 1 else n * fac (n-1) in fac 5120
This uses the fact that Haskell’s let introduces recursive bindings. We can
 rewrite this definition using fix,
>>>fix (\rec n -> if n <= 1 then 1 else n * rec (n-1)) 5120
Instead of making a recursive call, we introduce a dummy parameter rec;
 when used within fix, this parameter then refers to fix’s argument, hence
 the recursion is reintroduced.
flip :: (a -> b -> c) -> b -> a -> c #
 takes its (first) two arguments in the reverse order of flip ff.
>>>flip (++) "hello" "world""worldhello"
const x is a unary function which evaluates to x for all inputs.
>>>const 42 "hello"42
>>>map (const 42) [0..3][42,42,42,42]
module Data.Functor
module Data.Functor.Identity
module Data.Functor.Compose
The Ix class is used to map a contiguous subrange of values in
 a type onto integers.  It is used primarily for array indexing
 (see the array package).
The first argument (l,u) of each of these operations is a pair
 specifying the lower and upper bounds of a contiguous subrange of values.
An implementation is entitled to assume the following laws about these operations:
Minimal complete definition
range, (index | unsafeIndex), inRange
Instances
| Ix Bool | Since: base-2.1  | 
| Ix Char | Since: base-2.1  | 
| Ix Int | Since: base-2.1  | 
| Ix Int8 | Since: base-2.1  | 
| Ix Int16 | Since: base-2.1  | 
| Ix Int32 | Since: base-2.1  | 
| Ix Int64 | Since: base-2.1  | 
| Ix Integer | Since: base-2.1  | 
Defined in GHC.Ix  | |
| Ix Natural | Since: base-4.8.0.0  | 
Defined in GHC.Ix  | |
| Ix Ordering | Since: base-2.1  | 
Defined in GHC.Ix Methods range :: (Ordering, Ordering) -> [Ordering] # index :: (Ordering, Ordering) -> Ordering -> Int # unsafeIndex :: (Ordering, Ordering) -> Ordering -> Int # inRange :: (Ordering, Ordering) -> Ordering -> Bool # rangeSize :: (Ordering, Ordering) -> Int # unsafeRangeSize :: (Ordering, Ordering) -> Int #  | |
| Ix Word | Since: base-4.6.0.0  | 
| Ix Word8 | Since: base-2.1  | 
| Ix Word16 | Since: base-2.1  | 
| Ix Word32 | Since: base-2.1  | 
| Ix Word64 | Since: base-2.1  | 
| Ix () | Since: base-2.1  | 
| Ix Void | Since: base-4.8.0.0  | 
| Ix Associativity | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods range :: (Associativity, Associativity) -> [Associativity] # index :: (Associativity, Associativity) -> Associativity -> Int # unsafeIndex :: (Associativity, Associativity) -> Associativity -> Int # inRange :: (Associativity, Associativity) -> Associativity -> Bool # rangeSize :: (Associativity, Associativity) -> Int # unsafeRangeSize :: (Associativity, Associativity) -> Int #  | |
| Ix SourceUnpackedness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods range :: (SourceUnpackedness, SourceUnpackedness) -> [SourceUnpackedness] # index :: (SourceUnpackedness, SourceUnpackedness) -> SourceUnpackedness -> Int # unsafeIndex :: (SourceUnpackedness, SourceUnpackedness) -> SourceUnpackedness -> Int # inRange :: (SourceUnpackedness, SourceUnpackedness) -> SourceUnpackedness -> Bool # rangeSize :: (SourceUnpackedness, SourceUnpackedness) -> Int # unsafeRangeSize :: (SourceUnpackedness, SourceUnpackedness) -> Int #  | |
| Ix SourceStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods range :: (SourceStrictness, SourceStrictness) -> [SourceStrictness] # index :: (SourceStrictness, SourceStrictness) -> SourceStrictness -> Int # unsafeIndex :: (SourceStrictness, SourceStrictness) -> SourceStrictness -> Int # inRange :: (SourceStrictness, SourceStrictness) -> SourceStrictness -> Bool # rangeSize :: (SourceStrictness, SourceStrictness) -> Int # unsafeRangeSize :: (SourceStrictness, SourceStrictness) -> Int #  | |
| Ix DecidedStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods range :: (DecidedStrictness, DecidedStrictness) -> [DecidedStrictness] # index :: (DecidedStrictness, DecidedStrictness) -> DecidedStrictness -> Int # unsafeIndex :: (DecidedStrictness, DecidedStrictness) -> DecidedStrictness -> Int # inRange :: (DecidedStrictness, DecidedStrictness) -> DecidedStrictness -> Bool # rangeSize :: (DecidedStrictness, DecidedStrictness) -> Int # unsafeRangeSize :: (DecidedStrictness, DecidedStrictness) -> Int #  | |
| Ix StateNum Source # | |
Defined in Language.Lexer.Tlex.Machine.State Methods range :: (StateNum, StateNum) -> [StateNum] # index :: (StateNum, StateNum) -> StateNum -> Int # unsafeIndex :: (StateNum, StateNum) -> StateNum -> Int # inRange :: (StateNum, StateNum) -> StateNum -> Bool # rangeSize :: (StateNum, StateNum) -> Int # unsafeRangeSize :: (StateNum, StateNum) -> Int #  | |
| Ix a => Ix (Identity a) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Identity Methods range :: (Identity a, Identity a) -> [Identity a] # index :: (Identity a, Identity a) -> Identity a -> Int # unsafeIndex :: (Identity a, Identity a) -> Identity a -> Int # inRange :: (Identity a, Identity a) -> Identity a -> Bool # rangeSize :: (Identity a, Identity a) -> Int # unsafeRangeSize :: (Identity a, Identity a) -> Int #  | |
| Ix a => Ix (Down a) | Since: base-4.14.0.0  | 
| (Ix a, Ix b) => Ix (a, b) | Since: base-2.1  | 
| Ix (Proxy s) | Since: base-4.7.0.0  | 
Defined in Data.Proxy  | |
| (Ix a1, Ix a2, Ix a3) => Ix (a1, a2, a3) | Since: base-2.1  | 
Defined in GHC.Ix Methods range :: ((a1, a2, a3), (a1, a2, a3)) -> [(a1, a2, a3)] # index :: ((a1, a2, a3), (a1, a2, a3)) -> (a1, a2, a3) -> Int # unsafeIndex :: ((a1, a2, a3), (a1, a2, a3)) -> (a1, a2, a3) -> Int # inRange :: ((a1, a2, a3), (a1, a2, a3)) -> (a1, a2, a3) -> Bool # rangeSize :: ((a1, a2, a3), (a1, a2, a3)) -> Int # unsafeRangeSize :: ((a1, a2, a3), (a1, a2, a3)) -> Int #  | |
| Ix a => Ix (Const a b) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Const Methods range :: (Const a b, Const a b) -> [Const a b] # index :: (Const a b, Const a b) -> Const a b -> Int # unsafeIndex :: (Const a b, Const a b) -> Const a b -> Int # inRange :: (Const a b, Const a b) -> Const a b -> Bool # rangeSize :: (Const a b, Const a b) -> Int # unsafeRangeSize :: (Const a b, Const a b) -> Int #  | |
| (Ix a1, Ix a2, Ix a3, Ix a4) => Ix (a1, a2, a3, a4) | Since: base-2.1  | 
Defined in GHC.Ix Methods range :: ((a1, a2, a3, a4), (a1, a2, a3, a4)) -> [(a1, a2, a3, a4)] # index :: ((a1, a2, a3, a4), (a1, a2, a3, a4)) -> (a1, a2, a3, a4) -> Int # unsafeIndex :: ((a1, a2, a3, a4), (a1, a2, a3, a4)) -> (a1, a2, a3, a4) -> Int # inRange :: ((a1, a2, a3, a4), (a1, a2, a3, a4)) -> (a1, a2, a3, a4) -> Bool # rangeSize :: ((a1, a2, a3, a4), (a1, a2, a3, a4)) -> Int # unsafeRangeSize :: ((a1, a2, a3, a4), (a1, a2, a3, a4)) -> Int #  | |
| (Ix a1, Ix a2, Ix a3, Ix a4, Ix a5) => Ix (a1, a2, a3, a4, a5) | Since: base-2.1  | 
Defined in GHC.Ix Methods range :: ((a1, a2, a3, a4, a5), (a1, a2, a3, a4, a5)) -> [(a1, a2, a3, a4, a5)] # index :: ((a1, a2, a3, a4, a5), (a1, a2, a3, a4, a5)) -> (a1, a2, a3, a4, a5) -> Int # unsafeIndex :: ((a1, a2, a3, a4, a5), (a1, a2, a3, a4, a5)) -> (a1, a2, a3, a4, a5) -> Int # inRange :: ((a1, a2, a3, a4, a5), (a1, a2, a3, a4, a5)) -> (a1, a2, a3, a4, a5) -> Bool # rangeSize :: ((a1, a2, a3, a4, a5), (a1, a2, a3, a4, a5)) -> Int # unsafeRangeSize :: ((a1, a2, a3, a4, a5), (a1, a2, a3, a4, a5)) -> Int #  | |
Non-empty (and non-strict) list type.
Since: base-4.9.0.0
Constructors
| a :| [a] infixr 5 | 
Instances
| Monad NonEmpty | Since: base-4.9.0.0  | 
| Functor NonEmpty | Since: base-4.9.0.0  | 
| Applicative NonEmpty | Since: base-4.9.0.0  | 
| Foldable NonEmpty | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => NonEmpty m -> m # foldMap :: Monoid m => (a -> m) -> NonEmpty a -> m # foldMap' :: Monoid m => (a -> m) -> NonEmpty a -> m # foldr :: (a -> b -> b) -> b -> NonEmpty a -> b # foldr' :: (a -> b -> b) -> b -> NonEmpty a -> b # foldl :: (b -> a -> b) -> b -> NonEmpty a -> b # foldl' :: (b -> a -> b) -> b -> NonEmpty a -> b # foldr1 :: (a -> a -> a) -> NonEmpty a -> a # foldl1 :: (a -> a -> a) -> NonEmpty a -> a # elem :: Eq a => a -> NonEmpty a -> Bool # maximum :: Ord a => NonEmpty a -> a # minimum :: Ord a => NonEmpty a -> a #  | |
| Traversable NonEmpty | Since: base-4.9.0.0  | 
| Eq1 NonEmpty | Since: base-4.10.0.0  | 
| Ord1 NonEmpty | Since: base-4.10.0.0  | 
Defined in Data.Functor.Classes  | |
| Read1 NonEmpty | Since: base-4.10.0.0  | 
Defined in Data.Functor.Classes  | |
| Show1 NonEmpty | Since: base-4.10.0.0  | 
| IsList (NonEmpty a) | Since: base-4.9.0.0  | 
| Eq a => Eq (NonEmpty a) | Since: base-4.9.0.0  | 
| Ord a => Ord (NonEmpty a) | Since: base-4.9.0.0  | 
| Read a => Read (NonEmpty a) | Since: base-4.11.0.0  | 
| Show a => Show (NonEmpty a) | Since: base-4.11.0.0  | 
| Generic (NonEmpty a) | Since: base-4.6.0.0  | 
| Semigroup (NonEmpty a) | Since: base-4.9.0.0  | 
| Hashable a => Hashable (NonEmpty a) | |
Defined in Data.Hashable.Class  | |
| Generic1 NonEmpty | Since: base-4.6.0.0  | 
| type Rep (NonEmpty a) | |
Defined in GHC.Generics type Rep (NonEmpty a) = D1 ('MetaData "NonEmpty" "GHC.Base" "base" 'False) (C1 ('MetaCons ":|" ('InfixI 'LeftAssociative 9) 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 a) :*: S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 [a])))  | |
| type Item (NonEmpty a) | |
| type Rep1 NonEmpty | |
Defined in GHC.Generics type Rep1 NonEmpty = D1 ('MetaData "NonEmpty" "GHC.Base" "base" 'False) (C1 ('MetaCons ":|" ('InfixI 'LeftAssociative 9) 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) Par1 :*: S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec1 [])))  | |
The Down type allows you to reverse sort order conveniently.  A value of type
  contains a value of type Down aa (represented as ).
 If Down aa has an  instance associated with it then comparing two
 values thus wrapped will give you the opposite of their normal sort order.
 This is particularly useful when sorting in generalised list comprehensions,
 as in: Ordthen sortWith by Down x
Since: base-4.6.0.0
Instances
| Monad Down | Since: base-4.11.0.0  | 
| Functor Down | Since: base-4.11.0.0  | 
| Applicative Down | Since: base-4.11.0.0  | 
| Foldable Down | Since: base-4.12.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Down m -> m # foldMap :: Monoid m => (a -> m) -> Down a -> m # foldMap' :: Monoid m => (a -> m) -> Down a -> m # foldr :: (a -> b -> b) -> b -> Down a -> b # foldr' :: (a -> b -> b) -> b -> Down a -> b # foldl :: (b -> a -> b) -> b -> Down a -> b # foldl' :: (b -> a -> b) -> b -> Down a -> b # foldr1 :: (a -> a -> a) -> Down a -> a # foldl1 :: (a -> a -> a) -> Down a -> a # elem :: Eq a => a -> Down a -> Bool # maximum :: Ord a => Down a -> a #  | |
| Traversable Down | Since: base-4.12.0.0  | 
| Eq1 Down | Since: base-4.12.0.0  | 
| Ord1 Down | Since: base-4.12.0.0  | 
Defined in Data.Functor.Classes  | |
| Read1 Down | Since: base-4.12.0.0  | 
Defined in Data.Functor.Classes  | |
| Show1 Down | Since: base-4.12.0.0  | 
| Bounded a => Bounded (Down a) | Since: base-4.14.0.0  | 
| Enum a => Enum (Down a) | Since: base-4.14.0.0  | 
Defined in Data.Ord  | |
| Eq a => Eq (Down a) | Since: base-4.6.0.0  | 
| Floating a => Floating (Down a) | Since: base-4.14.0.0  | 
| Fractional a => Fractional (Down a) | Since: base-4.14.0.0  | 
| Integral a => Integral (Down a) | Since: base-4.14.0.0  | 
| Num a => Num (Down a) | Since: base-4.11.0.0  | 
| Ord a => Ord (Down a) | Since: base-4.6.0.0  | 
| Read a => Read (Down a) | This instance would be equivalent to the derived instances of the
  Since: base-4.7.0.0  | 
| Real a => Real (Down a) | Since: base-4.14.0.0  | 
Defined in Data.Ord Methods toRational :: Down a -> Rational #  | |
| RealFloat a => RealFloat (Down a) | Since: base-4.14.0.0  | 
Defined in Data.Ord Methods floatRadix :: Down a -> Integer # floatDigits :: Down a -> Int # floatRange :: Down a -> (Int, Int) # decodeFloat :: Down a -> (Integer, Int) # encodeFloat :: Integer -> Int -> Down a # significand :: Down a -> Down a # scaleFloat :: Int -> Down a -> Down a # isInfinite :: Down a -> Bool # isDenormalized :: Down a -> Bool # isNegativeZero :: Down a -> Bool #  | |
| RealFrac a => RealFrac (Down a) | Since: base-4.14.0.0  | 
| Show a => Show (Down a) | This instance would be equivalent to the derived instances of the
  Since: base-4.7.0.0  | 
| Ix a => Ix (Down a) | Since: base-4.14.0.0  | 
| Generic (Down a) | Since: base-4.12.0.0  | 
| Semigroup a => Semigroup (Down a) | Since: base-4.11.0.0  | 
| Monoid a => Monoid (Down a) | Since: base-4.11.0.0  | 
| Storable a => Storable (Down a) | Since: base-4.14.0.0  | 
| Bits a => Bits (Down a) | Since: base-4.14.0.0  | 
Defined in Data.Ord Methods (.&.) :: Down a -> Down a -> Down a # (.|.) :: Down a -> Down a -> Down a # xor :: Down a -> Down a -> Down a # complement :: Down a -> Down a # shift :: Down a -> Int -> Down a # rotate :: Down a -> Int -> Down a # setBit :: Down a -> Int -> Down a # clearBit :: Down a -> Int -> Down a # complementBit :: Down a -> Int -> Down a # testBit :: Down a -> Int -> Bool # bitSizeMaybe :: Down a -> Maybe Int # shiftL :: Down a -> Int -> Down a # unsafeShiftL :: Down a -> Int -> Down a # shiftR :: Down a -> Int -> Down a # unsafeShiftR :: Down a -> Int -> Down a # rotateL :: Down a -> Int -> Down a #  | |
| FiniteBits a => FiniteBits (Down a) | Since: base-4.14.0.0  | 
Defined in Data.Ord Methods finiteBitSize :: Down a -> Int # countLeadingZeros :: Down a -> Int # countTrailingZeros :: Down a -> Int #  | |
| Generic1 Down | Since: base-4.12.0.0  | 
| type Rep (Down a) | |
Defined in GHC.Generics  | |
| type Rep1 Down | |
Defined in GHC.Generics  | |
Proxy is a type that holds no data, but has a phantom parameter of
 arbitrary type (or even kind). Its use is to provide type information, even
 though there is no value available of that type (or it may be too costly to
 create one).
Historically,  is a safer alternative to the
 Proxy :: Proxy a idiom.undefined :: a
>>>Proxy :: Proxy (Void, Int -> Int)Proxy
Proxy can even hold types of higher kinds,
>>>Proxy :: Proxy EitherProxy
>>>Proxy :: Proxy FunctorProxy
>>>Proxy :: Proxy complicatedStructureProxy
Constructors
| Proxy | 
Instances
| Generic1 (Proxy :: k -> Type) | Since: base-4.6.0.0  | 
| Monad (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
| Functor (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
| Applicative (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
| Foldable (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => Proxy m -> m # foldMap :: Monoid m => (a -> m) -> Proxy a -> m # foldMap' :: Monoid m => (a -> m) -> Proxy a -> m # foldr :: (a -> b -> b) -> b -> Proxy a -> b # foldr' :: (a -> b -> b) -> b -> Proxy a -> b # foldl :: (b -> a -> b) -> b -> Proxy a -> b # foldl' :: (b -> a -> b) -> b -> Proxy a -> b # foldr1 :: (a -> a -> a) -> Proxy a -> a # foldl1 :: (a -> a -> a) -> Proxy a -> a # elem :: Eq a => a -> Proxy a -> Bool # maximum :: Ord a => Proxy a -> a # minimum :: Ord a => Proxy a -> a #  | |
| Traversable (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
| Eq1 (Proxy :: Type -> Type) | Since: base-4.9.0.0  | 
| Ord1 (Proxy :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Classes  | |
| Read1 (Proxy :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Classes  | |
| Show1 (Proxy :: Type -> Type) | Since: base-4.9.0.0  | 
| Alternative (Proxy :: Type -> Type) | Since: base-4.9.0.0  | 
| MonadPlus (Proxy :: Type -> Type) | Since: base-4.9.0.0  | 
| Hashable1 (Proxy :: Type -> Type) | |
Defined in Data.Hashable.Class  | |
| Bounded (Proxy t) | Since: base-4.7.0.0  | 
| Enum (Proxy s) | Since: base-4.7.0.0  | 
| Eq (Proxy s) | Since: base-4.7.0.0  | 
| Ord (Proxy s) | Since: base-4.7.0.0  | 
| Read (Proxy t) | Since: base-4.7.0.0  | 
| Show (Proxy s) | Since: base-4.7.0.0  | 
| Ix (Proxy s) | Since: base-4.7.0.0  | 
Defined in Data.Proxy  | |
| Generic (Proxy t) | Since: base-4.6.0.0  | 
| Semigroup (Proxy s) | Since: base-4.9.0.0  | 
| Monoid (Proxy s) | Since: base-4.7.0.0  | 
| Hashable (Proxy a) | |
Defined in Data.Hashable.Class  | |
| type Rep1 (Proxy :: k -> Type) | |
| type Rep (Proxy t) | |
The class Typeable allows a concrete representation of a type to
 be calculated.
Minimal complete definition
typeRep#
Instances
| Bounded Word | Since: base-2.1  | 
| Enum Word | Since: base-2.1  | 
| Eq Word | |
| Integral Word | Since: base-2.1  | 
| Num Word | Since: base-2.1  | 
| Ord Word | |
| Read Word | Since: base-4.5.0.0  | 
| Real Word | Since: base-2.1  | 
Defined in GHC.Real Methods toRational :: Word -> Rational #  | |
| Show Word | Since: base-2.1  | 
| Ix Word | Since: base-4.6.0.0  | 
| Hashable Word | |
Defined in Data.Hashable.Class  | |
| Generic1 (URec Word :: k -> Type) | Since: base-4.9.0.0  | 
| Foldable (UWord :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => UWord m -> m # foldMap :: Monoid m => (a -> m) -> UWord a -> m # foldMap' :: Monoid m => (a -> m) -> UWord a -> m # foldr :: (a -> b -> b) -> b -> UWord a -> b # foldr' :: (a -> b -> b) -> b -> UWord a -> b # foldl :: (b -> a -> b) -> b -> UWord a -> b # foldl' :: (b -> a -> b) -> b -> UWord a -> b # foldr1 :: (a -> a -> a) -> UWord a -> a # foldl1 :: (a -> a -> a) -> UWord a -> a # elem :: Eq a => a -> UWord a -> Bool # maximum :: Ord a => UWord a -> a # minimum :: Ord a => UWord a -> a #  | |
| Traversable (UWord :: Type -> Type) | Since: base-4.9.0.0  | 
| Functor (URec Word :: Type -> Type) | Since: base-4.9.0.0  | 
| Eq (URec Word p) | Since: base-4.9.0.0  | 
| Ord (URec Word p) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| Show (URec Word p) | Since: base-4.9.0.0  | 
| Generic (URec Word p) | Since: base-4.9.0.0  | 
| data URec Word (p :: k) | Used for marking occurrences of  Since: base-4.9.0.0  | 
| type Rep1 (URec Word :: k -> Type) | |
Defined in GHC.Generics  | |
| type Rep (URec Word p) | |
Defined in GHC.Generics  | |
8-bit unsigned integer type