| Copyright | Copyright (C) 2006-2018 Bjorn Buckwalter | 
|---|---|
| License | BSD3 | 
| Maintainer | bjorn@buckwalter.se | 
| Stability | Stable | 
| Portability | GHC only | 
| Safe Haskell | None | 
| Language | Haskell2010 | 
Numeric.Units.Dimensional.Prelude
Description
Summary
This module supplies a convenient set of imports for working with the dimensional package, including aliases for common Quantitys and Dimensions,
and a comprehensive set of SI units and units accepted for use with the SI.
It re-exports the Prelude, hiding arithmetic functions whose names collide with the dimensionally-typed versions supplied by this package.
Synopsis
- class HasDynamicDimension a => HasDimension a where
- dimension :: a -> Dimension'
 
 - data Dimension' = Dim' !Int !Int !Int !Int !Int !Int !Int
 - type KnownDimension (d :: Dimension) = HasDimension (Proxy d)
 - type Cbrt d = NRoot d Pos3
 - type Sqrt d = NRoot d Pos2
 - type family NRoot (d :: Dimension) (x :: TypeInt) where ...
 - type family (d :: Dimension) ^ (x :: TypeInt) where ...
 - type Recip (d :: Dimension) = DOne / d
 - type family (a :: Dimension) / (d :: Dimension) where ...
 - type family (a :: Dimension) * (b :: Dimension) where ...
 - type DLuminousIntensity = Dim Zero Zero Zero Zero Zero Zero Pos1
 - type DAmountOfSubstance = Dim Zero Zero Zero Zero Zero Pos1 Zero
 - type DThermodynamicTemperature = Dim Zero Zero Zero Zero Pos1 Zero Zero
 - type DElectricCurrent = Dim Zero Zero Zero Pos1 Zero Zero Zero
 - type DTime = Dim Zero Zero Pos1 Zero Zero Zero Zero
 - type DMass = Dim Zero Pos1 Zero Zero Zero Zero Zero
 - type DLength = Dim Pos1 Zero Zero Zero Zero Zero Zero
 - type DOne = Dim Zero Zero Zero Zero Zero Zero Zero
 - data Dimension = Dim TypeInt TypeInt TypeInt TypeInt TypeInt TypeInt TypeInt
 - data Metricality
 - class KnownVariant (v :: Variant) where
- data Dimensional v :: Dimension -> Type -> Type
 
 - type Quantity = SQuantity One
 - type Unit (m :: Metricality) = Dimensional (DUnit m)
 - siUnit :: forall d a. (KnownDimension d, Num a) => Unit NonMetric d a
 - showIn :: (Show a, Fractional a) => Unit m d a -> Quantity d a -> String
 - type LuminousIntensity = Quantity DLuminousIntensity
 - type AmountOfSubstance = Quantity DAmountOfSubstance
 - type ThermodynamicTemperature = Quantity DThermodynamicTemperature
 - type ElectricCurrent = Quantity DElectricCurrent
 - type Time = Quantity DTime
 - type Mass = Quantity DMass
 - type Length = Quantity DLength
 - type Dimensionless = Quantity DOne
 - name :: Unit m d a -> UnitName m
 - exactValue :: Unit m d a -> ExactPi
 - weaken :: Unit m d a -> Unit NonMetric d a
 - strengthen :: Unit m d a -> Maybe (Unit Metric d a)
 - exactify :: Unit m d a -> Unit m d ExactPi
 - (*~) :: Num a => a -> Unit m d a -> Quantity d a
 - (/~) :: Fractional a => Quantity d a -> Unit m d a -> a
 - (*) :: (KnownVariant v1, KnownVariant v2, KnownVariant (v1 * v2), Num a) => Dimensional v1 d1 a -> Dimensional v2 d2 a -> Dimensional (v1 * v2) (d1 * d2) a
 - (/) :: (KnownVariant v1, KnownVariant v2, KnownVariant (v1 / v2), Fractional a) => Dimensional v1 d1 a -> Dimensional v2 d2 a -> Dimensional (v1 / v2) (d1 / d2) a
 - recip :: Fractional a => Quantity d a -> Quantity (Recip d) a
 - (^) :: (Fractional a, KnownTypeInt i, KnownVariant v, KnownVariant (Weaken v)) => Dimensional v d1 a -> Proxy i -> Dimensional (Weaken v) (d1 ^ i) a
 - negate :: Num a => Quantity d a -> Quantity d a
 - (+) :: Num a => Quantity d a -> Quantity d a -> Quantity d a
 - (-) :: Num a => Quantity d a -> Quantity d a -> Quantity d a
 - abs :: Num a => Quantity d a -> Quantity d a
 - signum :: Num a => Quantity d a -> Dimensionless a
 - nroot :: (KnownTypeInt n, Floating a) => Proxy n -> Quantity d a -> Quantity (NRoot d n) a
 - sqrt :: Floating a => Quantity d a -> Quantity (Sqrt d) a
 - cbrt :: Floating a => Quantity d a -> Quantity (Cbrt d) a
 - (^/) :: (KnownTypeInt n, Floating a) => Quantity d a -> Proxy n -> Quantity (NRoot d n) a
 - (*~~) :: (Functor f, Num a) => f a -> Unit m d a -> f (Quantity d a)
 - (/~~) :: forall f m d a. (Functor f, Fractional a) => f (Quantity d a) -> Unit m d a -> f a
 - sum :: (Num a, Foldable f) => f (Quantity d a) -> Quantity d a
 - product :: (Num a, Foldable f) => f (Dimensionless a) -> Dimensionless a
 - mean :: (Fractional a, Foldable f) => f (Quantity d a) -> Quantity d a
 - dimensionlessLength :: (Num a, Foldable f) => f b -> Dimensionless a
 - nFromTo :: (Fractional a, Integral b) => Quantity d a -> Quantity d a -> b -> [Quantity d a]
 - exp :: Floating a => Dimensionless a -> Dimensionless a
 - log :: Floating a => Dimensionless a -> Dimensionless a
 - sin :: Floating a => Dimensionless a -> Dimensionless a
 - cos :: Floating a => Dimensionless a -> Dimensionless a
 - tan :: Floating a => Dimensionless a -> Dimensionless a
 - asin :: Floating a => Dimensionless a -> Dimensionless a
 - acos :: Floating a => Dimensionless a -> Dimensionless a
 - atan :: Floating a => Dimensionless a -> Dimensionless a
 - sinh :: Floating a => Dimensionless a -> Dimensionless a
 - cosh :: Floating a => Dimensionless a -> Dimensionless a
 - tanh :: Floating a => Dimensionless a -> Dimensionless a
 - asinh :: Floating a => Dimensionless a -> Dimensionless a
 - acosh :: Floating a => Dimensionless a -> Dimensionless a
 - atanh :: Floating a => Dimensionless a -> Dimensionless a
 - log1p :: Floating a => Dimensionless a -> Dimensionless a
 - expm1 :: Floating a => Dimensionless a -> Dimensionless a
 - log1pexp :: Floating a => Dimensionless a -> Dimensionless a
 - log1mexp :: Floating a => Dimensionless a -> Dimensionless a
 - (**) :: Floating a => Dimensionless a -> Dimensionless a -> Dimensionless a
 - logBase :: Floating a => Dimensionless a -> Dimensionless a -> Dimensionless a
 - atan2 :: RealFloat a => Quantity d a -> Quantity d a -> Dimensionless a
 - one :: Num a => Unit NonMetric DOne a
 - _0 :: Num a => Quantity d a
 - _1 :: Num a => Dimensionless a
 - _2 :: Num a => Dimensionless a
 - _3 :: Num a => Dimensionless a
 - _4 :: Num a => Dimensionless a
 - _5 :: Num a => Dimensionless a
 - _6 :: Num a => Dimensionless a
 - _7 :: Num a => Dimensionless a
 - _8 :: Num a => Dimensionless a
 - _9 :: Num a => Dimensionless a
 - pi :: Floating a => Dimensionless a
 - tau :: Floating a => Dimensionless a
 - changeRep :: (KnownVariant v, Real a, Fractional b) => Dimensional v d a -> Dimensional v d b
 - changeRepApproximate :: (KnownVariant v, Floating b) => Dimensional v d ExactPi -> Dimensional v d b
 - asLens :: Fractional a => Unit m d a -> forall f. Functor f => (a -> f a) -> Quantity d a -> f (Quantity d a)
 - mkUnitR :: Floating a => UnitName m -> ExactPi -> Unit m1 d a -> Unit m d a
 - mkUnitQ :: Fractional a => UnitName m -> Rational -> Unit m1 d a -> Unit m d a
 - mkUnitZ :: Num a => UnitName m -> Integer -> Unit m1 d a -> Unit m d a
 - module Numeric.Units.Dimensional.Quantities
 - module Numeric.Units.Dimensional.SIUnits
 - pos5 :: Proxy Pos5
 - pos4 :: Proxy Pos4
 - pos3 :: Proxy Pos3
 - pos2 :: Proxy Pos2
 - pos1 :: Proxy Pos1
 - zero :: Proxy Zero
 - neg1 :: Proxy Neg1
 - neg2 :: Proxy Neg2
 - neg3 :: Proxy Neg3
 - neg4 :: Proxy Neg4
 - neg5 :: Proxy Neg5
 - class Category (cat :: k -> k -> Type) where
 - maximum :: (Foldable t, Ord a) => t a -> a
 - minimum :: (Foldable t, Ord a) => t a -> a
 - (++) :: [a] -> [a] -> [a]
 - seq :: 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]
 - ($) :: (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
 - class Num a => Fractional a where
- 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
- fromInteger :: Integer -> a
 
 - 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
 
 - class (Real a, Fractional a) => RealFrac a where
 - class Show a 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)]
 - (<$>) :: Functor f => (a -> b) -> f a -> f b
 - lcm :: Integral a => a -> a -> a
 - gcd :: Integral a => a -> a -> a
 - (^^) :: (Fractional 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
 - tail :: [a] -> [a]
 - head :: [a] -> a
 - maybe :: b -> (a -> b) -> Maybe a -> 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
 - ($!) :: (a -> b) -> a -> b
 - flip :: (a -> b -> c) -> b -> a -> c
 - const :: a -> b -> a
 - (=<<) :: Monad m => (a -> m b) -> m a -> m b
 - type String = [Char]
 - undefined :: HasCallStack => a
 - errorWithoutStackTrace :: [Char] -> a
 - error :: HasCallStack => [Char] -> a
 - (&&) :: Bool -> Bool -> Bool
 - (||) :: Bool -> Bool -> Bool
 - not :: Bool -> Bool
 
Documentation
class HasDynamicDimension a => HasDimension a where Source #
Dimensional values inhabit this class, which allows access to a term-level representation of their dimension.
Methods
dimension :: a -> Dimension' Source #
Obtains a term-level representation of a value's dimension.
Instances
| HasDimension Dimension' Source # | |
Defined in Numeric.Units.Dimensional.Dimensions.TermLevel Methods dimension :: Dimension' -> Dimension' Source #  | |
| HasDimension AnyUnit Source # | |
Defined in Numeric.Units.Dimensional.Dynamic Methods dimension :: AnyUnit -> Dimension' Source #  | |
| HasDimension (AnyQuantity a) Source # | |
Defined in Numeric.Units.Dimensional.Dynamic Methods dimension :: AnyQuantity a -> Dimension' Source #  | |
| (KnownTypeInt l, KnownTypeInt m, KnownTypeInt t, KnownTypeInt i, KnownTypeInt th, KnownTypeInt n, KnownTypeInt j) => HasDimension (Proxy (Dim l m t i th n j)) Source # | |
| KnownDimension d => HasDimension (Dimensional v d a) Source # | |
Defined in Numeric.Units.Dimensional.Internal Methods dimension :: Dimensional v d a -> Dimension' Source #  | |
data Dimension' Source #
A physical dimension, encoded as 7 integers, representing a factorization of the dimension into the
 7 SI base dimensions. By convention they are stored in the same order as
 in the Dimension data kind.
Instances
type KnownDimension (d :: Dimension) = HasDimension (Proxy d) Source #
A KnownDimension is one for which we can construct a term-level representation.
 Each validly constructed type of kind Dimension has a KnownDimension instance.
While KnownDimension is a constraint synonym, the presence of  in
  a context allows use of KnownDimension d.dimension :: Proxy d -> Dimension'
type family NRoot (d :: Dimension) (x :: TypeInt) where ... Source #
Roots of dimensions corresponds to division of the base dimensions' exponents by the order of the root.
type family (d :: Dimension) ^ (x :: TypeInt) where ... infixr 8 Source #
Powers of dimensions corresponds to multiplication of the base dimensions' exponents by the exponent.
We limit ourselves to integer powers of Dimensionals as fractional powers make little physical sense.
type Recip (d :: Dimension) = DOne / d Source #
The reciprocal of a dimension is defined as the result of dividing DOne by it,
 or of negating each of the base dimensions' exponents.
type family (a :: Dimension) / (d :: Dimension) where ... infixl 7 Source #
Division of dimensions corresponds to subtraction of the base dimensions' exponents.
type family (a :: Dimension) * (b :: Dimension) where ... infixl 7 Source #
Multiplication of dimensions corresponds to adding of the base dimensions' exponents.
type DOne = Dim Zero Zero Zero Zero Zero Zero Zero Source #
The type-level dimension of dimensionless values.
Represents a physical dimension in the basis of the 7 SI base dimensions, where the respective dimensions are represented by type variables using the following convention:
- l: Length
 - m: Mass
 - t: Time
 - i: Electric current
 - th: Thermodynamic temperature
 - n: Amount of substance
 - j: Luminous intensity
 
For the equivalent term-level representation, see Dimension'
Instances
| (KnownTypeInt l, KnownTypeInt m, KnownTypeInt t, KnownTypeInt i, KnownTypeInt th, KnownTypeInt n, KnownTypeInt j) => HasDimension (Proxy (Dim l m t i th n j)) Source # | |
| (KnownTypeInt l, KnownTypeInt m, KnownTypeInt t, KnownTypeInt i, KnownTypeInt th, KnownTypeInt n, KnownTypeInt j) => HasDynamicDimension (Proxy (Dim l m t i th n j)) Source # | |
Defined in Numeric.Units.Dimensional.Dimensions.TypeLevel Methods dynamicDimension :: Proxy (Dim l m t i th n j) -> DynamicDimension Source #  | |
data Metricality Source #
Encodes whether a unit is a metric unit, that is, whether it can be combined with a metric prefix to form a related unit.
Constructors
| Metric | Capable of receiving a metric prefix.  | 
| NonMetric | Incapable of receiving a metric prefix.  | 
Instances
class KnownVariant (v :: Variant) Source #
A KnownVariant is one whose term-level Dimensional values we can represent with an associated data family instance
 and manipulate with certain functions, not all of which are exported from the package.
Each validly constructed type of kind Variant has a KnownVariant instance.
Minimal complete definition
extractValue, extractName, injectValue, dmap
Associated Types
Instances
| KnownVariant (DQuantity s) Source # | |
Defined in Numeric.Units.Dimensional.Internal Associated Types data Dimensional (DQuantity s) a b :: Type Source # Methods extractValue :: Dimensional (DQuantity s) d a -> (a, Maybe ExactPi) extractName :: Dimensional (DQuantity s) d a -> Maybe (UnitName NonMetric) injectValue :: Maybe (UnitName NonMetric) -> (a, Maybe ExactPi) -> Dimensional (DQuantity s) d a dmap :: (a1 -> a2) -> Dimensional (DQuantity s) d a1 -> Dimensional (DQuantity s) d a2 Source #  | |
| Typeable m => KnownVariant (DUnit m) Source # | |
Defined in Numeric.Units.Dimensional.Internal Associated Types data Dimensional (DUnit m) a b :: Type Source # Methods extractValue :: Dimensional (DUnit m) d a -> (a, Maybe ExactPi) extractName :: Dimensional (DUnit m) d a -> Maybe (UnitName NonMetric) injectValue :: Maybe (UnitName NonMetric) -> (a, Maybe ExactPi) -> Dimensional (DUnit m) d a dmap :: (a1 -> a2) -> Dimensional (DUnit m) d a1 -> Dimensional (DUnit m) d a2 Source #  | |
type Unit (m :: Metricality) = Dimensional (DUnit m) Source #
A unit of measurement.
siUnit :: forall d a. (KnownDimension d, Num a) => Unit NonMetric d a Source #
A polymorphic Unit which can be used in place of the coherent
 SI base unit of any dimension. This allows polymorphic quantity
 creation and destruction without exposing the Dimensional constructor.
type Dimensionless = Quantity DOne Source #
exactValue :: Unit m d a -> ExactPi Source #
weaken :: Unit m d a -> Unit NonMetric d a Source #
Discards potentially unwanted type level information about a Unit.
(*~) :: Num a => a -> Unit m d a -> Quantity d a infixl 7 Source #
Forms a Quantity by multipliying a number and a unit.
(*) :: (KnownVariant v1, KnownVariant v2, KnownVariant (v1 * v2), Num a) => Dimensional v1 d1 a -> Dimensional v2 d2 a -> Dimensional (v1 * v2) (d1 * d2) a infixl 7 Source #
(/) :: (KnownVariant v1, KnownVariant v2, KnownVariant (v1 / v2), Fractional a) => Dimensional v1 d1 a -> Dimensional v2 d2 a -> Dimensional (v1 / v2) (d1 / d2) a infixl 7 Source #
recip :: Fractional a => Quantity d a -> Quantity (Recip d) a Source #
Forms the reciprocal of a Quantity, which has the reciprocal dimension.
>>>recip $ 47 *~ hertz2.127659574468085e-2 s
(^) :: (Fractional a, KnownTypeInt i, KnownVariant v, KnownVariant (Weaken v)) => Dimensional v d1 a -> Proxy i -> Dimensional (Weaken v) (d1 ^ i) a infixr 8 Source #
Raises a Quantity or Unit to an integer power.
Because the power chosen impacts the Dimension of the result, it is necessary to supply a type-level representation
 of the exponent in the form of a Proxy to some TypeInt. Convenience values pos1, pos2, neg1, ...
 are supplied by the Numeric.NumType.DK.Integers module. The most commonly used ones are
 also reexported by Numeric.Units.Dimensional.Prelude.
The intimidating type signature captures the similarity between these operations
 and ensures that composite Units are NotPrefixable.
(-) :: Num a => Quantity d a -> Quantity d a -> Quantity d a infixl 6 Source #
Subtracts one Quantity from another.
nroot :: (KnownTypeInt n, Floating a) => Proxy n -> Quantity d a -> Quantity (NRoot d n) a Source #
Computes the nth root of a Quantity using **.
The NRoot type family will prevent application of this operator where the result would have a fractional dimension or where n is zero.
Because the root chosen impacts the Dimension of the result, it is necessary to supply a type-level representation
 of the root in the form of a Proxy to some TypeInt. Convenience values pos1, pos2, neg1, ...
 are supplied by the Numeric.NumType.DK.Integers module. The most commonly used ones are
 also reexported by Numeric.Units.Dimensional.Prelude.
n must not be zero. Negative roots are defined such that nroot (Proxy :: Proxy (Negate n)) x == nroot (Proxy :: Proxy n) (recip x).
Also available in operator form, see ^/.
(^/) :: (KnownTypeInt n, Floating a) => Quantity d a -> Proxy n -> Quantity (NRoot d n) a infixr 8 Source #
Computes the nth root of a Quantity using **.
The NRoot type family will prevent application of this operator where the result would have a fractional dimension or where n is zero.
Because the root chosen impacts the Dimension of the result, it is necessary to supply a type-level representation
 of the root in the form of a Proxy to some TypeInt. Convenience values pos1, pos2, neg1, ...
 are supplied by the Numeric.NumType.DK.Integers module. The most commonly used ones are
 also reexported by Numeric.Units.Dimensional.Prelude.
Also available in prefix form, see nroot.
(*~~) :: (Functor f, Num a) => f a -> Unit m d a -> f (Quantity d a) infixl 7 Source #
Applies *~ to all values in a functor.
(/~~) :: forall f m d a. (Functor f, Fractional a) => f (Quantity d a) -> Unit m d a -> f a infixl 7 Source #
Applies /~ to all values in a functor.
sum :: (Num a, Foldable f) => f (Quantity d a) -> Quantity d a Source #
The sum of all elements in a foldable structure.
>>>sum ([] :: [Mass Double])0.0 kg
>>>sum [12.4 *~ meter, 1 *~ foot]12.7048 m
product :: (Num a, Foldable f) => f (Dimensionless a) -> Dimensionless a Source #
The product of all elements in a foldable structure.
>>>product ([] :: [Dimensionless Double])1.0
>>>product [pi, _4, 0.36 *~ one]4.523893421169302
mean :: (Fractional a, Foldable f) => f (Quantity d a) -> Quantity d a Source #
The arithmetic mean of all elements in a foldable structure.
>>>mean [pi, _7]5.070796326794897
dimensionlessLength :: (Num a, Foldable f) => f b -> Dimensionless a Source #
The length of the foldable data structure as a Dimensionless.
 This can be useful for purposes of e.g. calculating averages.
>>>dimensionlessLength ["foo", "bar"]2
Arguments
| :: (Fractional a, Integral b) | |
| => Quantity d a | The initial value.  | 
| -> Quantity d a | The final value.  | 
| -> b | The number of intermediate values. If less than one, no intermediate values will result.  | 
| -> [Quantity d a] | 
Returns a list of quantities between given bounds.
n <= 0 ==> nFromTo (x :: Mass Double) (y :: Mass Double) n == [x, y]
(x :: Length Double) <= (y :: Length Double) ==> all (\z -> x <= z && z <= y) (nFromTo x y n)
>>>nFromTo _0 _3 2[0.0,1.0,2.0,3.0]
>>>nFromTo _1 _0 7[1.0,0.875,0.75,0.625,0.5,0.375,0.25,0.125,0.0]
>>>nFromTo _0 _1 (-5)[0.0,1.0]
exp :: Floating a => Dimensionless a -> Dimensionless a Source #
log :: Floating a => Dimensionless a -> Dimensionless a Source #
sin :: Floating a => Dimensionless a -> Dimensionless a Source #
cos :: Floating a => Dimensionless a -> Dimensionless a Source #
tan :: Floating a => Dimensionless a -> Dimensionless a Source #
asin :: Floating a => Dimensionless a -> Dimensionless a Source #
acos :: Floating a => Dimensionless a -> Dimensionless a Source #
atan :: Floating a => Dimensionless a -> Dimensionless a Source #
sinh :: Floating a => Dimensionless a -> Dimensionless a Source #
cosh :: Floating a => Dimensionless a -> Dimensionless a Source #
tanh :: Floating a => Dimensionless a -> Dimensionless a Source #
asinh :: Floating a => Dimensionless a -> Dimensionless a Source #
acosh :: Floating a => Dimensionless a -> Dimensionless a Source #
atanh :: Floating a => Dimensionless a -> Dimensionless a Source #
log1p :: Floating a => Dimensionless a -> Dimensionless a Source #
expm1 :: Floating a => Dimensionless a -> Dimensionless a Source #
log1pexp :: Floating a => Dimensionless a -> Dimensionless a Source #
log1mexp :: Floating a => Dimensionless a -> Dimensionless a Source #
(**) :: Floating a => Dimensionless a -> Dimensionless a -> Dimensionless a infixr 8 Source #
Raises a dimensionless quantity to a dimensionless power.
logBase :: Floating a => Dimensionless a -> Dimensionless a -> Dimensionless a Source #
Takes the logarithm of the second argument in the base of the first.
>>>logBase _2 _83.0
atan2 :: RealFloat a => Quantity d a -> Quantity d a -> Dimensionless a Source #
The standard two argument arctangent function. Since it interprets its two arguments in comparison with one another, the input may have any dimension.
>>>atan2 _0 _10.0
>>>atan2 _1 _01.5707963267948966
>>>atan2 _0 (negate _1)3.141592653589793
>>>atan2 (negate _1) _0-1.5707963267948966
one :: Num a => Unit NonMetric DOne a Source #
The unit one has dimension DOne and is the base unit of dimensionless values.
As detailed in 7.10 "Values of quantities expressed simply as numbers:
 the unit one, symbol 1" of [1] the unit one generally does not
 appear in expressions. However, for us it is necessary to use one
 as we would any other unit to perform the "boxing" of dimensionless values.
_0 :: Num a => Quantity d a Source #
The constant for zero is polymorphic, allowing it to express zero Length or
 Capacitance or Velocity etc,
 in addition to the Dimensionless value zero.
_1 :: Num a => Dimensionless a Source #
_2 :: Num a => Dimensionless a Source #
_3 :: Num a => Dimensionless a Source #
_4 :: Num a => Dimensionless a Source #
_5 :: Num a => Dimensionless a Source #
_6 :: Num a => Dimensionless a Source #
_7 :: Num a => Dimensionless a Source #
_8 :: Num a => Dimensionless a Source #
_9 :: Num a => Dimensionless a Source #
pi :: Floating a => Dimensionless a Source #
tau :: Floating a => Dimensionless a Source #
Twice pi.
For background on tau see http://tauday.com/tau-manifesto (but also
 feel free to review http://www.thepimanifesto.com).
changeRep :: (KnownVariant v, Real a, Fractional b) => Dimensional v d a -> Dimensional v d b Source #
Convenient conversion between numerical types while retaining dimensional information.
>>>let x = (37 :: Rational) *~ poundMass>>>changeRep x :: Mass Double16.78291769 kg
changeRepApproximate :: (KnownVariant v, Floating b) => Dimensional v d ExactPi -> Dimensional v d b Source #
Convenient conversion from exactly represented values while retaining dimensional information.
asLens :: Fractional a => Unit m d a -> forall f. Functor f => (a -> f a) -> Quantity d a -> f (Quantity d a) Source #
mkUnitR :: Floating a => UnitName m -> ExactPi -> Unit m1 d a -> Unit m d a Source #
Forms a new atomic Unit by specifying its UnitName and its definition as a multiple of another Unit.
Use this variant when the scale factor of the resulting unit is irrational or Approximate. See mkUnitQ for when it is rational
 and mkUnitZ for when it is an integer.
Note that supplying zero as a definining quantity is invalid, as the library relies upon units forming a group under multiplication.
Supplying negative defining quantities is allowed and handled gracefully, but is discouraged on the grounds that it may be unexpected by other readers.
class Category (cat :: k -> k -> Type) where #
A class for categories. Instances should satisfy the laws
f.id= f -- (right identity)id.f = f -- (left identity) f.(g.h) = (f.g).h -- (associativity)
(++) :: [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.
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] #
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]
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] #
map f xs is the list obtained by applying f to each element
 of xs, i.e.,
map f [x1, x2, ..., xn] == [f x1, f x2, ..., f xn] map f [x1, x2, ...] == [f x1, f x2, ...]
($) :: (a -> b) -> a -> b infixr 0 #
Application operator.  This operator is redundant, since ordinary
 application (f x) means the same as (f . However, $ x)$ has
 low, right-associative binding precedence, so it sometimes allows
 parentheses to be omitted; for example:
f $ g $ h x = f (g (h x))
It is also useful in higher-order situations, such as ,
 or map ($ 0) xs.zipWith ($) fs xs
Note that ($) is levity-polymorphic in its result type, so that
     foo $ True    where  foo :: Bool -> Int#
 is well-typed
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 All | Since: base-2.1  | 
| Bounded Any | 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 CChar | |
| Bounded CSChar | |
| Bounded CUChar | |
| Bounded CShort | |
| Bounded CUShort | |
| Bounded CInt | |
| Bounded CUInt | |
| Bounded CLong | |
| Bounded CULong | |
| Bounded CLLong | |
| Bounded CULLong | |
| Bounded CBool | |
| Bounded CPtrdiff | |
| Bounded CSize | |
| Bounded CWchar | |
| Bounded CSigAtomic | |
Defined in Foreign.C.Types  | |
| Bounded CIntPtr | |
| Bounded CUIntPtr | |
| Bounded CIntMax | |
| Bounded CUIntMax | |
| 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 (Dual a) | Since: base-2.1  | 
| Bounded a => Bounded (Sum a) | Since: base-2.1  | 
| Bounded a => Bounded (Product a) | Since: base-2.1  | 
| (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  | 
| (Applicative f, Bounded a) => Bounded (Ap f a) | Since: base-4.12.0.0  | 
| Coercible a b => Bounded (Coercion a b) | Since: base-4.7.0.0  | 
| a ~ b => Bounded (a :~: b) | Since: base-4.7.0.0  | 
| Bounded a => Bounded (SQuantity s d a) Source # | |
| (Bounded a, Bounded b, Bounded c, Bounded d) => Bounded (a, b, c, d) | Since: base-2.1  | 
| a ~~ b => Bounded (a :~~: b) | Since: base-4.10.0.0  | 
| (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 BigNat | |
| 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 Constr | Equality of constructors Since: base-4.0.0.0  | 
| Eq DataRep | Since: base-4.0.0.0  | 
| Eq ConstrRep | Since: base-4.0.0.0  | 
| Eq Fixity | Since: base-4.0.0.0  | 
| 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 All | Since: base-2.1  | 
| Eq Any | Since: base-2.1  | 
| 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 SomeSymbol | Since: base-4.7.0.0  | 
Defined in GHC.TypeLits  | |
| Eq SomeNat | Since: base-4.7.0.0  | 
| Eq CChar | |
| Eq CSChar | |
| Eq CUChar | |
| Eq CShort | |
| Eq CUShort | |
| Eq CInt | |
| Eq CUInt | |
| Eq CLong | |
| Eq CULong | |
| Eq CLLong | |
| Eq CULLong | |
| Eq CBool | |
| Eq CFloat | |
| Eq CDouble | |
| Eq CPtrdiff | |
| Eq CSize | |
| Eq CWchar | |
| Eq CSigAtomic | |
Defined in Foreign.C.Types  | |
| Eq CClock | |
| Eq CTime | |
| Eq CUSeconds | |
| Eq CSUSeconds | |
Defined in Foreign.C.Types  | |
| Eq CIntPtr | |
| Eq CUIntPtr | |
| Eq CIntMax | |
| Eq CUIntMax | |
| 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 ByteArray | Since: primitive-0.6.3.0  | 
| Eq Addr | |
| Eq DynamicDimension Source # | |
Defined in Numeric.Units.Dimensional.Dimensions.TermLevel Methods (==) :: DynamicDimension -> DynamicDimension -> Bool # (/=) :: DynamicDimension -> DynamicDimension -> Bool #  | |
| Eq Dimension' Source # | |
| Eq InterchangeName Source # | |
Defined in Numeric.Units.Dimensional.UnitNames.InterchangeNames Methods (==) :: InterchangeName -> InterchangeName -> Bool # (/=) :: InterchangeName -> InterchangeName -> Bool #  | |
| Eq InterchangeNameAuthority Source # | |
Defined in Numeric.Units.Dimensional.UnitNames.InterchangeNames Methods (==) :: InterchangeNameAuthority -> InterchangeNameAuthority -> Bool # (/=) :: InterchangeNameAuthority -> InterchangeNameAuthority -> Bool #  | |
| Eq Metricality Source # | |
Defined in Numeric.Units.Dimensional.Variants  | |
| Eq Prefix Source # | |
| Eq a => Eq [a] | |
| Eq a => Eq (Maybe a) | Since: base-2.1  | 
| Eq a => Eq (Ratio a) | Since: base-2.1  | 
| Eq (StablePtr 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 (ForeignPtr a) | Since: base-2.1  | 
Defined in GHC.ForeignPtr  | |
| Eq a => Eq (Complex a) | Since: base-2.1  | 
| Eq (Fixed 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 (IORef a) | ^ Pointer equality. Since: base-4.1.0.0  | 
| Eq a => Eq (First a) | Since: base-2.1  | 
| Eq a => Eq (Last a) | Since: base-2.1  | 
| Eq a => Eq (Dual a) | Since: base-2.1  | 
| Eq a => Eq (Sum a) | Since: base-2.1  | 
| Eq a => Eq (Product a) | Since: base-2.1  | 
| Eq a => Eq (Down a) | Since: base-4.6.0.0  | 
| Eq (MVar a) | Since: base-4.1.0.0  | 
| Eq a => Eq (NonEmpty a) | Since: base-4.9.0.0  | 
| (Eq a, PrimUnlifted a) => Eq (UnliftedArray a) | |
Defined in Data.Primitive.UnliftedArray Methods (==) :: UnliftedArray a -> UnliftedArray a -> Bool # (/=) :: UnliftedArray a -> UnliftedArray a -> Bool #  | |
| (Eq a, Prim a) => Eq (PrimArray a) | Since: primitive-0.6.4.0  | 
| Eq a => Eq (SmallArray a) | |
Defined in Data.Primitive.SmallArray  | |
| Eq a => Eq (Array a) | |
| (Prim a, Eq a) => Eq (Vector a) | |
| Eq (NameAtom m) Source # | |
| Eq (UnitName m) Source # | |
| Eq a => Eq (DynQuantity a) Source # | |
Defined in Numeric.Units.Dimensional.Dynamic Methods (==) :: DynQuantity a -> DynQuantity a -> Bool # (/=) :: DynQuantity a -> DynQuantity a -> Bool #  | |
| Eq a => Eq (AnyQuantity a) Source # | |
Defined in Numeric.Units.Dimensional.Dynamic Methods (==) :: AnyQuantity a -> AnyQuantity a -> Bool # (/=) :: AnyQuantity a -> AnyQuantity a -> Bool #  | |
| (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 a => Eq (Arg a b) | Since: base-4.9.0.0  | 
| Eq (Proxy s) | Since: base-4.7.0.0  | 
| Eq (STRef s a) | Pointer equality. Since: base-2.1  | 
| Eq (MutableUnliftedArray s a) | |
Defined in Data.Primitive.UnliftedArray Methods (==) :: MutableUnliftedArray s a -> MutableUnliftedArray s a -> Bool # (/=) :: MutableUnliftedArray s a -> MutableUnliftedArray s a -> Bool #  | |
| Eq (SmallMutableArray s a) | |
Defined in Data.Primitive.SmallArray Methods (==) :: SmallMutableArray s a -> SmallMutableArray s a -> Bool # (/=) :: SmallMutableArray s a -> SmallMutableArray s a -> Bool #  | |
| Eq (MutableArray s a) | |
Defined in Data.Primitive.Array Methods (==) :: MutableArray s a -> MutableArray s a -> Bool # (/=) :: MutableArray s a -> MutableArray s a -> Bool #  | |
| (Eq1 m, Eq a) => Eq (MaybeT m a) | |
| (Eq1 m, Eq a) => Eq (ListT m a) | |
| 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 (f a) => Eq (Ap f a) | Since: base-4.12.0.0  | 
| Eq (f a) => Eq (Alt f a) | Since: base-4.8.0.0  | 
| Eq (Coercion a b) | Since: base-4.7.0.0  | 
| Eq (a :~: b) | Since: base-4.7.0.0  | 
| (Eq w, Eq1 m, Eq a) => Eq (WriterT w m a) | |
| (Eq w, Eq1 m, Eq a) => Eq (WriterT w m a) | |
| (Eq1 f, Eq a) => Eq (IdentityT f a) | |
| (Eq e, Eq1 m, Eq a) => Eq (ExceptT e m a) | |
| (Eq e, Eq1 m, Eq a) => Eq (ErrorT e m a) | |
| Eq a => Eq (Dimensional (DQuantity s) d a) Source # | |
Defined in Numeric.Units.Dimensional.Internal Methods (==) :: Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a -> Bool # (/=) :: Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a -> Bool #  | |
| 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 (a :~~: b) | Since: base-4.10.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 #
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.
Methods
fromRational :: Rational -> a #
Conversion from a Rational (that is ).
 A floating literal stands for an application of Ratio IntegerfromRational
 to a value of type Rational, so such literals have type
 (.Fractional a) => a
Instances
| Fractional CFloat | |
| Fractional CDouble | |
| Fractional ExactPi | |
| KnownMinCtxt Fractional | |
Defined in Data.ExactPi.TypeLevel Methods inj :: Fractional a => Proxy Fractional -> ExactPi -> a  | |
| Integral a => Fractional (Ratio a) | Since: base-2.0.1  | 
| RealFloat a => Fractional (Complex a) | Since: base-2.1  | 
| HasResolution a => Fractional (Fixed a) | Since: base-2.1  | 
| Fractional a => Fractional (Identity a) | Since: base-4.9.0.0  | 
| Fractional a => Fractional (DynQuantity a) Source # | |
Defined in Numeric.Units.Dimensional.Dynamic Methods (/) :: DynQuantity a -> DynQuantity a -> DynQuantity a # recip :: DynQuantity a -> DynQuantity a # fromRational :: Rational -> DynQuantity a #  | |
| 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
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 laws:
Furthermore, the Monad and Applicative operations should relate as follows:
The above laws imply:
and that pure and (<*>) satisfy the applicative functor laws.
The instances of Monad for lists, Maybe and IO
defined in the Prelude satisfy these laws.
Minimal complete definition
Methods
(>>=) :: 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.
(>>) :: m a -> m b -> m b infixl 1 #
Sequentially compose two actions, discarding any value produced by the first, like sequencing operators (such as the semicolon) in imperative languages.
Inject a value into the monadic type.
Fail with a message.  This operation is not part of the
 mathematical definition of a monad, but is invoked on pattern-match
 failure in a do expression.
As part of the MonadFail proposal (MFP), this function is moved
 to its own class MonadFail (see Control.Monad.Fail for more
 details). The definition here will be removed in a future
 release.
Instances
| Monad [] | Since: 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 First | Since: base-4.8.0.0  | 
| Monad Last | Since: base-4.8.0.0  | 
| Monad Dual | Since: base-4.8.0.0  | 
| Monad Sum | Since: base-4.8.0.0  | 
| Monad Product | Since: base-4.8.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 SmallArray | |
Defined in Data.Primitive.SmallArray Methods (>>=) :: SmallArray a -> (a -> SmallArray b) -> SmallArray b # (>>) :: SmallArray a -> SmallArray b -> SmallArray b # return :: a -> SmallArray a # fail :: String -> SmallArray a #  | |
| Monad Array | |
| Monad Id | |
| Monad Box | |
| 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 (ST s) | Since: base-2.1  | 
| 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 # fail :: String -> WrappedMonad m a #  | |
| Monad (Proxy :: Type -> Type) | Since: base-4.7.0.0  | 
| Monad m => Monad (MaybeT m) | |
| Monad m => Monad (ListT m) | |
| Monad f => Monad (Rec1 f) | Since: base-4.9.0.0  | 
| Monad f => Monad (Ap f) | Since: base-4.12.0.0  | 
| Monad f => Monad (Alt f) | Since: base-4.8.0.0  | 
| (Monoid w, Monad m) => Monad (WriterT w m) | |
| (Monoid w, Functor m, Monad m) => Monad (AccumT w m) | |
| (Monoid w, Monad m) => Monad (WriterT w m) | |
| Monad m => Monad (StateT s m) | |
| Monad m => Monad (StateT s m) | |
| Monad m => Monad (SelectT r m) | |
| Monad m => Monad (IdentityT m) | |
| Monad m => Monad (ExceptT e m) | |
| (Monad m, Error e) => Monad (ErrorT e m) | |
| Monad ((->) r :: Type -> Type) | Since: base-2.1  | 
| (Monad f, Monad g) => Monad (f :*: g) | Since: base-4.9.0.0  | 
| (Monad f, Monad g) => Monad (Product f g) | Since: base-4.9.0.0  | 
| Monad m => Monad (ReaderT r m) | |
| Monad (ContT r m) | |
| Monad f => Monad (M1 i c f) | Since: base-4.9.0.0  | 
| (Monoid w, Monad m) => Monad (RWST r w s m) | |
| (Monoid w, Monad m) => Monad (RWST r w s m) | |
class Functor (f :: Type -> Type) where #
The Functor class is used for types that can be mapped over.
Instances of Functor should satisfy the following laws:
fmap id == id fmap (f . g) == fmap f . fmap g
The instances of Functor for lists, Maybe and IO
satisfy these laws.
Minimal complete definition
Instances
| Functor [] | 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 STM | Since: base-4.3.0.0  | 
| Functor First | Since: base-4.8.0.0  | 
| Functor Last | Since: base-4.8.0.0  | 
| Functor Dual | Since: base-4.8.0.0  | 
| Functor Sum | Since: base-4.8.0.0  | 
| Functor Product | Since: base-4.8.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 SmallArray | |
Defined in Data.Primitive.SmallArray Methods fmap :: (a -> b) -> SmallArray a -> SmallArray b # (<$) :: a -> SmallArray b -> SmallArray a #  | |
| Functor Array | |
| Functor Id | |
| Functor Box | |
| Functor P | Since: base-4.8.0.0  | 
Defined in Text.ParserCombinators.ReadP  | |
| 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 (ST s) | 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 m => Functor (MaybeT m) | |
| Functor m => Functor (ListT m) | |
| 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  | 
| 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  | 
| Functor f => Functor (Ap f) | Since: base-4.12.0.0  | 
| Functor f => Functor (Alt f) | Since: base-4.8.0.0  | 
| Functor m => Functor (WriterT w m) | |
| Functor m => Functor (AccumT w m) | |
| Functor m => Functor (WriterT w m) | |
| Functor m => Functor (StateT s m) | |
| Functor m => Functor (StateT s m) | |
| Functor m => Functor (SelectT r m) | |
| Functor m => Functor (IdentityT m) | |
| Functor m => Functor (ExceptT e m) | |
| Functor m => Functor (ErrorT e m) | |
| Monad m => Functor (Bundle m v) | |
| KnownVariant v => Functor (Dimensional v d) Source # | A  Note that this instance is dubious, because it allows you to break the dimensional abstraction. See  Note that, while this instance overlaps with that given for  Note that this is an orphan instance.  | 
Defined in Numeric.Units.Dimensional.Functor Methods fmap :: (a -> b) -> Dimensional v d a -> Dimensional v d b # (<$) :: a -> Dimensional v d b -> Dimensional v d a #  | |
| Functor (SQuantity s DOne) 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 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 m => Functor (ReaderT r m) | |
| Functor (ContT r m) | |
| 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 m => Functor (RWST r w s m) | |
| Functor m => Functor (RWST r w s m) | |
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 + xfromInteger 0is the additive identityx + fromInteger 0=xnegategives the additive inversex + negate x=fromInteger 0- Associativity of (*)
 (x * y) * z=x * (y * z)fromInteger 1is the multiplicative identityx * 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
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
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
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 BigNat | |
| 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 All | Since: base-2.1  | 
| Ord Any | Since: base-2.1  | 
| 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 SomeSymbol | Since: base-4.7.0.0  | 
Defined in GHC.TypeLits Methods compare :: SomeSymbol -> SomeSymbol -> Ordering # (<) :: SomeSymbol -> SomeSymbol -> Bool # (<=) :: SomeSymbol -> SomeSymbol -> Bool # (>) :: SomeSymbol -> SomeSymbol -> Bool # (>=) :: SomeSymbol -> SomeSymbol -> Bool # max :: SomeSymbol -> SomeSymbol -> SomeSymbol # min :: SomeSymbol -> SomeSymbol -> SomeSymbol #  | |
| Ord SomeNat | Since: base-4.7.0.0  | 
| Ord CChar | |
| Ord CSChar | |
| Ord CUChar | |
| Ord CShort | |
| Ord CUShort | |
| Ord CInt | |
| Ord CUInt | |
| Ord CLong | |
| Ord CULong | |
| Ord CLLong | |
| Ord CULLong | |
| Ord CBool | |
| Ord CFloat | |
| Ord CDouble | |
| Ord CPtrdiff | |
Defined in Foreign.C.Types  | |
| Ord CSize | |
| Ord CWchar | |
| Ord CSigAtomic | |
Defined in Foreign.C.Types Methods compare :: CSigAtomic -> CSigAtomic -> Ordering # (<) :: CSigAtomic -> CSigAtomic -> Bool # (<=) :: CSigAtomic -> CSigAtomic -> Bool # (>) :: CSigAtomic -> CSigAtomic -> Bool # (>=) :: CSigAtomic -> CSigAtomic -> Bool # max :: CSigAtomic -> CSigAtomic -> CSigAtomic # min :: CSigAtomic -> CSigAtomic -> CSigAtomic #  | |
| Ord CClock | |
| Ord CTime | |
| Ord CUSeconds | |
| Ord CSUSeconds | |
Defined in Foreign.C.Types Methods compare :: CSUSeconds -> CSUSeconds -> Ordering # (<) :: CSUSeconds -> CSUSeconds -> Bool # (<=) :: CSUSeconds -> CSUSeconds -> Bool # (>) :: CSUSeconds -> CSUSeconds -> Bool # (>=) :: CSUSeconds -> CSUSeconds -> Bool # max :: CSUSeconds -> CSUSeconds -> CSUSeconds # min :: CSUSeconds -> CSUSeconds -> CSUSeconds #  | |
| Ord CIntPtr | |
| Ord CUIntPtr | |
Defined in Foreign.C.Types  | |
| Ord CIntMax | |
| Ord CUIntMax | |
Defined in Foreign.C.Types  | |
| 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 ByteArray | Non-lexicographic ordering. This compares the lengths of the byte arrays first and uses a lexicographic ordering if the lengths are equal. Subject to change between major versions. Since: primitive-0.6.3.0  | 
| Ord Addr | |
| Ord DynamicDimension Source # | |
Defined in Numeric.Units.Dimensional.Dimensions.TermLevel Methods compare :: DynamicDimension -> DynamicDimension -> Ordering # (<) :: DynamicDimension -> DynamicDimension -> Bool # (<=) :: DynamicDimension -> DynamicDimension -> Bool # (>) :: DynamicDimension -> DynamicDimension -> Bool # (>=) :: DynamicDimension -> DynamicDimension -> Bool # max :: DynamicDimension -> DynamicDimension -> DynamicDimension # min :: DynamicDimension -> DynamicDimension -> DynamicDimension #  | |
| Ord Dimension' Source # | |
Defined in Numeric.Units.Dimensional.Dimensions.TermLevel Methods compare :: Dimension' -> Dimension' -> Ordering # (<) :: Dimension' -> Dimension' -> Bool # (<=) :: Dimension' -> Dimension' -> Bool # (>) :: Dimension' -> Dimension' -> Bool # (>=) :: Dimension' -> Dimension' -> Bool # max :: Dimension' -> Dimension' -> Dimension' # min :: Dimension' -> Dimension' -> Dimension' #  | |
| Ord InterchangeName Source # | |
Defined in Numeric.Units.Dimensional.UnitNames.InterchangeNames Methods compare :: InterchangeName -> InterchangeName -> Ordering # (<) :: InterchangeName -> InterchangeName -> Bool # (<=) :: InterchangeName -> InterchangeName -> Bool # (>) :: InterchangeName -> InterchangeName -> Bool # (>=) :: InterchangeName -> InterchangeName -> Bool # max :: InterchangeName -> InterchangeName -> InterchangeName # min :: InterchangeName -> InterchangeName -> InterchangeName #  | |
| Ord InterchangeNameAuthority Source # | |
Defined in Numeric.Units.Dimensional.UnitNames.InterchangeNames Methods compare :: InterchangeNameAuthority -> InterchangeNameAuthority -> Ordering # (<) :: InterchangeNameAuthority -> InterchangeNameAuthority -> Bool # (<=) :: InterchangeNameAuthority -> InterchangeNameAuthority -> Bool # (>) :: InterchangeNameAuthority -> InterchangeNameAuthority -> Bool # (>=) :: InterchangeNameAuthority -> InterchangeNameAuthority -> Bool # max :: InterchangeNameAuthority -> InterchangeNameAuthority -> InterchangeNameAuthority # min :: InterchangeNameAuthority -> InterchangeNameAuthority -> InterchangeNameAuthority #  | |
| Ord Metricality Source # | |
Defined in Numeric.Units.Dimensional.Variants Methods compare :: Metricality -> Metricality -> Ordering # (<) :: Metricality -> Metricality -> Bool # (<=) :: Metricality -> Metricality -> Bool # (>) :: Metricality -> Metricality -> Bool # (>=) :: Metricality -> Metricality -> Bool # max :: Metricality -> Metricality -> Metricality # min :: Metricality -> Metricality -> Metricality #  | |
| Ord Prefix Source # | |
Defined in Numeric.Units.Dimensional.UnitNames.Internal  | |
| 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 (ForeignPtr a) | Since: base-2.1  | 
Defined in GHC.ForeignPtr Methods compare :: ForeignPtr a -> ForeignPtr a -> Ordering # (<) :: ForeignPtr a -> ForeignPtr a -> Bool # (<=) :: ForeignPtr a -> ForeignPtr a -> Bool # (>) :: ForeignPtr a -> ForeignPtr a -> Bool # (>=) :: ForeignPtr a -> ForeignPtr a -> Bool # max :: ForeignPtr a -> ForeignPtr a -> ForeignPtr a # min :: ForeignPtr a -> ForeignPtr a -> ForeignPtr a #  | |
| Ord (Fixed a) | Since: base-2.1  | 
| 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 (First a) | Since: base-2.1  | 
| Ord a => Ord (Last a) | Since: base-2.1  | 
| Ord a => Ord (Dual a) | Since: base-2.1  | 
| Ord a => Ord (Sum a) | Since: base-2.1  | 
| Ord a => Ord (Product a) | Since: base-2.1  | 
| Ord a => Ord (Down a) | Since: base-4.6.0.0  | 
| Ord a => Ord (NonEmpty a) | Since: base-4.9.0.0  | 
| (Ord a, PrimUnlifted a) => Ord (UnliftedArray a) | Lexicographic ordering. Subject to change between major versions. Since: primitive-0.6.4.0  | 
Defined in Data.Primitive.UnliftedArray Methods compare :: UnliftedArray a -> UnliftedArray a -> Ordering # (<) :: UnliftedArray a -> UnliftedArray a -> Bool # (<=) :: UnliftedArray a -> UnliftedArray a -> Bool # (>) :: UnliftedArray a -> UnliftedArray a -> Bool # (>=) :: UnliftedArray a -> UnliftedArray a -> Bool # max :: UnliftedArray a -> UnliftedArray a -> UnliftedArray a # min :: UnliftedArray a -> UnliftedArray a -> UnliftedArray a #  | |
| (Ord a, Prim a) => Ord (PrimArray a) | Lexicographic ordering. Subject to change between major versions. Since: primitive-0.6.4.0  | 
Defined in Data.Primitive.PrimArray  | |
| Ord a => Ord (SmallArray a) | Lexicographic ordering. Subject to change between major versions.  | 
Defined in Data.Primitive.SmallArray Methods compare :: SmallArray a -> SmallArray a -> Ordering # (<) :: SmallArray a -> SmallArray a -> Bool # (<=) :: SmallArray a -> SmallArray a -> Bool # (>) :: SmallArray a -> SmallArray a -> Bool # (>=) :: SmallArray a -> SmallArray a -> Bool # max :: SmallArray a -> SmallArray a -> SmallArray a # min :: SmallArray a -> SmallArray a -> SmallArray a #  | |
| Ord a => Ord (Array a) | Lexicographic ordering. Subject to change between major versions.  | 
Defined in Data.Primitive.Array  | |
| (Prim a, Ord a) => Ord (Vector a) | |
Defined in Data.Vector.Primitive  | |
| Ord (NameAtom m) Source # | |
Defined in Numeric.Units.Dimensional.UnitNames.Internal  | |
| (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 a => Ord (Arg a b) | Since: base-4.9.0.0  | 
| Ord (Proxy s) | Since: base-4.7.0.0  | 
| (Ord1 m, Ord a) => Ord (MaybeT m a) | |
Defined in Control.Monad.Trans.Maybe  | |
| (Ord1 m, Ord a) => Ord (ListT m a) | |
| 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 (f a) => Ord (Ap f a) | Since: base-4.12.0.0  | 
| Ord (f a) => Ord (Alt f a) | Since: base-4.8.0.0  | 
Defined in Data.Semigroup.Internal  | |
| Ord (Coercion a b) | Since: base-4.7.0.0  | 
Defined in Data.Type.Coercion  | |
| Ord (a :~: b) | Since: base-4.7.0.0  | 
Defined in Data.Type.Equality  | |
| (Ord w, Ord1 m, Ord a) => Ord (WriterT w m a) | |
Defined in Control.Monad.Trans.Writer.Strict Methods compare :: WriterT w m a -> WriterT w m a -> Ordering # (<) :: WriterT w m a -> WriterT w m a -> Bool # (<=) :: WriterT w m a -> WriterT w m a -> Bool # (>) :: WriterT w m a -> WriterT w m a -> Bool # (>=) :: WriterT w m a -> WriterT w m a -> Bool #  | |
| (Ord w, Ord1 m, Ord a) => Ord (WriterT w m a) | |
Defined in Control.Monad.Trans.Writer.Lazy Methods compare :: WriterT w m a -> WriterT w m a -> Ordering # (<) :: WriterT w m a -> WriterT w m a -> Bool # (<=) :: WriterT w m a -> WriterT w m a -> Bool # (>) :: WriterT w m a -> WriterT w m a -> Bool # (>=) :: WriterT w m a -> WriterT w m a -> Bool #  | |
| (Ord1 f, Ord a) => Ord (IdentityT f a) | |
Defined in Control.Monad.Trans.Identity Methods compare :: IdentityT f a -> IdentityT f a -> Ordering # (<) :: IdentityT f a -> IdentityT f a -> Bool # (<=) :: IdentityT f a -> IdentityT f a -> Bool # (>) :: IdentityT f a -> IdentityT f a -> Bool # (>=) :: IdentityT f a -> IdentityT f a -> Bool #  | |
| (Ord e, Ord1 m, Ord a) => Ord (ExceptT e m a) | |
Defined in Control.Monad.Trans.Except Methods compare :: ExceptT e m a -> ExceptT e m a -> Ordering # (<) :: ExceptT e m a -> ExceptT e m a -> Bool # (<=) :: ExceptT e m a -> ExceptT e m a -> Bool # (>) :: ExceptT e m a -> ExceptT e m a -> Bool # (>=) :: ExceptT e m a -> ExceptT e m a -> Bool #  | |
| (Ord e, Ord1 m, Ord a) => Ord (ErrorT e m a) | |
Defined in Control.Monad.Trans.Error  | |
| Ord a => Ord (Dimensional (DQuantity s) d a) Source # | |
Defined in Numeric.Units.Dimensional.Internal Methods compare :: Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a -> Ordering # (<) :: Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a -> Bool # (<=) :: Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a -> Bool # (>) :: Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a -> Bool # (>=) :: Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a -> Bool # max :: Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a # min :: Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a -> Dimensional (DQuantity s) d a #  | |
| 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 (a :~~: b) | Since: base-4.10.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 All | Since: base-2.1  | 
| Read Any | Since: base-2.1  | 
| 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 SomeSymbol | Since: base-4.7.0.0  | 
Defined in GHC.TypeLits Methods readsPrec :: Int -> ReadS SomeSymbol # readList :: ReadS [SomeSymbol] # readPrec :: ReadPrec SomeSymbol # readListPrec :: ReadPrec [SomeSymbol] #  | |
| Read SomeNat | Since: base-4.7.0.0  | 
| Read CChar | |
| Read CSChar | |
| Read CUChar | |
| Read CShort | |
| Read CUShort | |
| Read CInt | |
| Read CUInt | |
| Read CLong | |
| Read CULong | |
| Read CLLong | |
| Read CULLong | |
| Read CBool | |
| Read CFloat | |
| Read CDouble | |
| Read CPtrdiff | |
| Read CSize | |
| Read CWchar | |
| Read CSigAtomic | |
Defined in Foreign.C.Types Methods readsPrec :: Int -> ReadS CSigAtomic # readList :: ReadS [CSigAtomic] # readPrec :: ReadPrec CSigAtomic # readListPrec :: ReadPrec [CSigAtomic] #  | |
| Read CClock | |
| Read CTime | |
| Read CUSeconds | |
| Read CSUSeconds | |
Defined in Foreign.C.Types Methods readsPrec :: Int -> ReadS CSUSeconds # readList :: ReadS [CSUSeconds] # readPrec :: ReadPrec CSUSeconds # readListPrec :: ReadPrec [CSUSeconds] #  | |
| Read CIntPtr | |
| Read CUIntPtr | |
| Read CIntMax | |
| Read CUIntMax | |
| 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 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  | 
| HasResolution a => Read (Fixed a) | Since: base-4.3.0.0  | 
| 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 (First a) | Since: base-2.1  | 
| Read a => Read (Last a) | Since: base-2.1  | 
| Read a => Read (Dual a) | Since: base-2.1  | 
| Read a => Read (Sum a) | Since: base-2.1  | 
| Read a => Read (Product a) | Since: base-2.1  | 
| Read a => Read (Down a) | Since: base-4.7.0.0  | 
| Read a => Read (NonEmpty a) | Since: base-4.11.0.0  | 
| Read a => Read (SmallArray a) | |
Defined in Data.Primitive.SmallArray Methods readsPrec :: Int -> ReadS (SmallArray a) # readList :: ReadS [SmallArray a] # readPrec :: ReadPrec (SmallArray a) # readListPrec :: ReadPrec [SmallArray a] #  | |
| Read a => Read (Array a) | |
| (Read a, Prim a) => Read (Vector 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  | 
| (Read a, Read b) => Read (Arg a b) | Since: base-4.9.0.0  | 
| Read (Proxy t) | Since: base-4.7.0.0  | 
| (Read1 m, Read a) => Read (MaybeT m a) | |
| (Read1 m, Read a) => Read (ListT m a) | |
| 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 (f a) => Read (Ap f a) | Since: base-4.12.0.0  | 
| Read (f a) => Read (Alt f a) | Since: base-4.8.0.0  | 
| Coercible a b => Read (Coercion a b) | Since: base-4.7.0.0  | 
| a ~ b => Read (a :~: b) | Since: base-4.7.0.0  | 
| (Read w, Read1 m, Read a) => Read (WriterT w m a) | |
| (Read w, Read1 m, Read a) => Read (WriterT w m a) | |
| (Read1 f, Read a) => Read (IdentityT f a) | |
| (Read e, Read1 m, Read a) => Read (ExceptT e m a) | |
| (Read e, Read1 m, Read a) => Read (ErrorT e m a) | |
| 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  | 
| a ~~ b => Read (a :~~: b) | Since: base-4.10.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
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
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
| Show Bool | Since: base-2.1  | 
| Show Char | Since: base-2.1  | 
| Show Int | Since: base-2.1  | 
| Show Int8 | Since: base-2.1  | 
| Show Int16 | Since: base-2.1  | 
| Show Int32 | Since: base-2.1  | 
| Show Int64 | Since: base-2.1  | 
| Show Integer | Since: base-2.1  | 
| Show Natural | Since: base-4.8.0.0  | 
| Show Ordering | Since: base-2.1  | 
| Show Word | Since: base-2.1  | 
| Show Word8 | Since: base-2.1  | 
| Show Word16 | Since: base-2.1  | 
| Show Word32 | Since: base-2.1  | 
| Show Word64 | Since: base-2.1  | 
| Show RuntimeRep | Since: base-4.11.0.0  | 
Defined in GHC.Show Methods showsPrec :: Int -> RuntimeRep -> ShowS # show :: RuntimeRep -> String # showList :: [RuntimeRep] -> ShowS #  | |
| Show VecCount | Since: base-4.11.0.0  | 
| Show VecElem | Since: base-4.11.0.0  | 
| Show CallStack | Since: base-4.9.0.0  | 
| Show SomeTypeRep | Since: base-4.10.0.0  | 
Defined in Data.Typeable.Internal Methods showsPrec :: Int -> SomeTypeRep -> ShowS # show :: SomeTypeRep -> String # showList :: [SomeTypeRep] -> ShowS #  | |
| Show () | Since: base-2.1  | 
| Show TyCon | Since: base-2.1  | 
| Show Module | Since: base-4.9.0.0  | 
| Show TrName | Since: base-4.9.0.0  | 
| Show KindRep | |
| Show TypeLitSort | Since: base-4.11.0.0  | 
Defined in GHC.Show Methods showsPrec :: Int -> TypeLitSort -> ShowS # show :: TypeLitSort -> String # showList :: [TypeLitSort] -> ShowS #  | |
| Show Void | Since: base-4.8.0.0  | 
| Show DataType | Since: base-4.0.0.0  | 
| Show Constr | Since: base-4.0.0.0  | 
| Show DataRep | Since: base-4.0.0.0  | 
| Show ConstrRep | Since: base-4.0.0.0  | 
| Show Fixity | Since: base-4.0.0.0  | 
| Show Version | Since: base-2.1  | 
| Show ThreadId | Since: base-4.2.0.0  | 
| Show BlockReason | Since: base-4.3.0.0  | 
Defined in GHC.Conc.Sync Methods showsPrec :: Int -> BlockReason -> ShowS # show :: BlockReason -> String # showList :: [BlockReason] -> ShowS #  | |
| Show ThreadStatus | Since: base-4.3.0.0  | 
Defined in GHC.Conc.Sync Methods showsPrec :: Int -> ThreadStatus -> ShowS # show :: ThreadStatus -> String # showList :: [ThreadStatus] -> ShowS #  | |
| Show BlockedIndefinitelyOnMVar | Since: base-4.1.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> BlockedIndefinitelyOnMVar -> ShowS # show :: BlockedIndefinitelyOnMVar -> String # showList :: [BlockedIndefinitelyOnMVar] -> ShowS #  | |
| Show BlockedIndefinitelyOnSTM | Since: base-4.1.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> BlockedIndefinitelyOnSTM -> ShowS # show :: BlockedIndefinitelyOnSTM -> String # showList :: [BlockedIndefinitelyOnSTM] -> ShowS #  | |
| Show Deadlock | Since: base-4.1.0.0  | 
| Show AllocationLimitExceeded | Since: base-4.7.1.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> AllocationLimitExceeded -> ShowS # show :: AllocationLimitExceeded -> String # showList :: [AllocationLimitExceeded] -> ShowS #  | |
| Show CompactionFailed | Since: base-4.10.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> CompactionFailed -> ShowS # show :: CompactionFailed -> String # showList :: [CompactionFailed] -> ShowS #  | |
| Show AssertionFailed | Since: base-4.1.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> AssertionFailed -> ShowS # show :: AssertionFailed -> String # showList :: [AssertionFailed] -> ShowS #  | |
| Show SomeAsyncException | Since: base-4.7.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> SomeAsyncException -> ShowS # show :: SomeAsyncException -> String # showList :: [SomeAsyncException] -> ShowS #  | |
| Show AsyncException | Since: base-4.1.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> AsyncException -> ShowS # show :: AsyncException -> String # showList :: [AsyncException] -> ShowS #  | |
| Show ArrayException | Since: base-4.1.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> ArrayException -> ShowS # show :: ArrayException -> String # showList :: [ArrayException] -> ShowS #  | |
| Show FixIOException | Since: base-4.11.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> FixIOException -> ShowS # show :: FixIOException -> String # showList :: [FixIOException] -> ShowS #  | |
| Show ExitCode | |
| Show IOErrorType | Since: base-4.1.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> IOErrorType -> ShowS # show :: IOErrorType -> String # showList :: [IOErrorType] -> ShowS #  | |
| Show MaskingState | Since: base-4.3.0.0  | 
Defined in GHC.IO Methods showsPrec :: Int -> MaskingState -> ShowS # show :: MaskingState -> String # showList :: [MaskingState] -> ShowS #  | |
| Show IOException | Since: base-4.1.0.0  | 
Defined in GHC.IO.Exception Methods showsPrec :: Int -> IOException -> ShowS # show :: IOException -> String # showList :: [IOException] -> ShowS #  | |
| Show All | Since: base-2.1  | 
| Show Any | Since: base-2.1  | 
| Show Fixity | Since: base-4.6.0.0  | 
| Show Associativity | Since: base-4.6.0.0  | 
Defined in GHC.Generics Methods showsPrec :: Int -> Associativity -> ShowS # show :: Associativity -> String # showList :: [Associativity] -> ShowS #  | |
| Show SourceUnpackedness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods showsPrec :: Int -> SourceUnpackedness -> ShowS # show :: SourceUnpackedness -> String # showList :: [SourceUnpackedness] -> ShowS #  | |
| Show SourceStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods showsPrec :: Int -> SourceStrictness -> ShowS # show :: SourceStrictness -> String # showList :: [SourceStrictness] -> ShowS #  | |
| Show DecidedStrictness | Since: base-4.9.0.0  | 
Defined in GHC.Generics Methods showsPrec :: Int -> DecidedStrictness -> ShowS # show :: DecidedStrictness -> String # showList :: [DecidedStrictness] -> ShowS #  | |
| Show SomeSymbol | Since: base-4.7.0.0  | 
Defined in GHC.TypeLits Methods showsPrec :: Int -> SomeSymbol -> ShowS # show :: SomeSymbol -> String # showList :: [SomeSymbol] -> ShowS #  | |
| Show SomeNat | Since: base-4.7.0.0  | 
| Show CChar | |
| Show CSChar | |
| Show CUChar | |
| Show CShort | |
| Show CUShort | |
| Show CInt | |
| Show CUInt | |
| Show CLong | |
| Show CULong | |
| Show CLLong | |
| Show CULLong | |
| Show CBool | |
| Show CFloat | |
| Show CDouble | |
| Show CPtrdiff | |
| Show CSize | |
| Show CWchar | |
| Show CSigAtomic | |
Defined in Foreign.C.Types Methods showsPrec :: Int -> CSigAtomic -> ShowS # show :: CSigAtomic -> String # showList :: [CSigAtomic] -> ShowS #  | |
| Show CClock | |
| Show CTime | |
| Show CUSeconds | |
| Show CSUSeconds | |
Defined in Foreign.C.Types Methods showsPrec :: Int -> CSUSeconds -> ShowS # show :: CSUSeconds -> String # showList :: [CSUSeconds] -> ShowS #  | |
| Show CIntPtr | |
| Show CUIntPtr | |
| Show CIntMax | |
| Show CUIntMax | |
| Show WordPtr | |
| Show IntPtr | |
| Show Fingerprint | Since: base-4.7.0.0  | 
Defined in GHC.Fingerprint.Type Methods showsPrec :: Int -> Fingerprint -> ShowS # show :: Fingerprint -> String # showList :: [Fingerprint] -> ShowS #  | |
| Show SrcLoc | Since: base-4.9.0.0  | 
| Show ExactPi | |
| Show ByteArray | Since: primitive-0.6.3.0  | 
| Show Addr | |
| Show DynamicDimension Source # | |
Defined in Numeric.Units.Dimensional.Dimensions.TermLevel Methods showsPrec :: Int -> DynamicDimension -> ShowS # show :: DynamicDimension -> String # showList :: [DynamicDimension] -> ShowS #  | |
| Show Dimension' Source # | |
Defined in Numeric.Units.Dimensional.Dimensions.TermLevel Methods showsPrec :: Int -> Dimension' -> ShowS # show :: Dimension' -> String # showList :: [Dimension'] -> ShowS #  | |
| Show InterchangeName Source # | |
Defined in Numeric.Units.Dimensional.UnitNames.InterchangeNames Methods showsPrec :: Int -> InterchangeName -> ShowS # show :: InterchangeName -> String # showList :: [InterchangeName] -> ShowS #  | |
| Show InterchangeNameAuthority Source # | |
Defined in Numeric.Units.Dimensional.UnitNames.InterchangeNames Methods showsPrec :: Int -> InterchangeNameAuthority -> ShowS # show :: InterchangeNameAuthority -> String # showList :: [InterchangeNameAuthority] -> ShowS #  | |
| Show AnyUnit Source # | |
| Show a => Show [a] | Since: base-2.1  | 
| Show a => Show (Maybe a) | Since: base-2.1  | 
| Show a => Show (Ratio a) | Since: base-2.0.1  | 
| Show (Ptr a) | Since: base-2.1  | 
| Show (FunPtr a) | Since: base-2.1  | 
| Show p => Show (Par1 p) | Since: base-4.7.0.0  | 
| Show (ForeignPtr a) | Since: base-2.1  | 
Defined in GHC.ForeignPtr Methods showsPrec :: Int -> ForeignPtr a -> ShowS # show :: ForeignPtr a -> String # showList :: [ForeignPtr a] -> ShowS #  | |
| Show a => Show (Complex a) | Since: base-2.1  | 
| HasResolution a => Show (Fixed a) | Since: base-2.1  | 
| Show a => Show (Min a) | Since: base-4.9.0.0  | 
| Show a => Show (Max a) | Since: base-4.9.0.0  | 
| Show a => Show (First a) | Since: base-4.9.0.0  | 
| Show a => Show (Last a) | Since: base-4.9.0.0  | 
| Show m => Show (WrappedMonoid m) | Since: base-4.9.0.0  | 
Defined in Data.Semigroup Methods showsPrec :: Int -> WrappedMonoid m -> ShowS # show :: WrappedMonoid m -> String # showList :: [WrappedMonoid m] -> ShowS #  | |
| Show a => Show (Option a) | Since: base-4.9.0.0  | 
| Show a => Show (ZipList a) | Since: base-4.7.0.0  | 
| Show a => Show (Identity a) | This instance would be equivalent to the derived instances of the
  Since: base-4.8.0.0  | 
| Show a => Show (First a) | Since: base-2.1  | 
| Show a => Show (Last a) | Since: base-2.1  | 
| Show a => Show (Dual a) | Since: base-2.1  | 
| Show a => Show (Sum a) | Since: base-2.1  | 
| Show a => Show (Product a) | Since: base-2.1  | 
| Show a => Show (Down a) | Since: base-4.7.0.0  | 
| Show a => Show (NonEmpty a) | Since: base-4.11.0.0  | 
| (Show a, PrimUnlifted a) => Show (UnliftedArray a) | Since: primitive-0.6.4.0  | 
Defined in Data.Primitive.UnliftedArray Methods showsPrec :: Int -> UnliftedArray a -> ShowS # show :: UnliftedArray a -> String # showList :: [UnliftedArray a] -> ShowS #  | |
| (Show a, Prim a) => Show (PrimArray a) | Since: primitive-0.6.4.0  | 
| Show a => Show (SmallArray a) | |
Defined in Data.Primitive.SmallArray Methods showsPrec :: Int -> SmallArray a -> ShowS # show :: SmallArray a -> String # showList :: [SmallArray a] -> ShowS #  | |
| Show a => Show (Array a) | |
| (Show a, Prim a) => Show (Vector a) | |
| Show (UnitName m) Source # | 
  | 
| Show a => Show (DynQuantity a) Source # | |
Defined in Numeric.Units.Dimensional.Dynamic Methods showsPrec :: Int -> DynQuantity a -> ShowS # show :: DynQuantity a -> String # showList :: [DynQuantity a] -> ShowS #  | |
| Show a => Show (AnyQuantity a) Source # | |
Defined in Numeric.Units.Dimensional.Dynamic Methods showsPrec :: Int -> AnyQuantity a -> ShowS # show :: AnyQuantity a -> String # showList :: [AnyQuantity a] -> ShowS #  | |
| (Show a, Show b) => Show (Either a b) | Since: base-3.0  | 
| Show (V1 p) | Since: base-4.9.0.0  | 
| Show (U1 p) | Since: base-4.9.0.0  | 
| Show (TypeRep a) | |
| (Show a, Show b) => Show (a, b) | Since: base-2.1  | 
| Show (ST s a) | Since: base-2.1  | 
| (Ix a, Show a, Show b) => Show (Array a b) | Since: base-2.1  | 
| (Show a, Show b) => Show (Arg a b) | Since: base-4.9.0.0  | 
| Show (Proxy s) | Since: base-4.7.0.0  | 
| (Show1 m, Show a) => Show (MaybeT m a) | |
| (Show1 m, Show a) => Show (ListT m a) | |
| Show (f p) => Show (Rec1 f p) | Since: base-4.7.0.0  | 
| Show (URec Char p) | Since: base-4.9.0.0  | 
| Show (URec Double p) | Since: base-4.9.0.0  | 
| Show (URec Float p) | |
| Show (URec Int p) | Since: base-4.9.0.0  | 
| Show (URec Word p) | Since: base-4.9.0.0  | 
| (Show a, Show b, Show c) => Show (a, b, c) | Since: base-2.1  | 
| Show a => Show (Const a b) | This instance would be equivalent to the derived instances of the
  Since: base-4.8.0.0  | 
| Show (f a) => Show (Ap f a) | Since: base-4.12.0.0  | 
| Show (f a) => Show (Alt f a) | Since: base-4.8.0.0  | 
| Show (Coercion a b) | Since: base-4.7.0.0  | 
| Show (a :~: b) | Since: base-4.7.0.0  | 
| (Show w, Show1 m, Show a) => Show (WriterT w m a) | |
| (Show w, Show1 m, Show a) => Show (WriterT w m a) | |
| (Show1 f, Show a) => Show (IdentityT f a) | |
| (Show e, Show1 m, Show a) => Show (ExceptT e m a) | |
| (Show e, Show1 m, Show a) => Show (ErrorT e m a) | |
| (KnownDimension d, KnownExactPi s, Show a, Real a) => Show (SQuantity s d a) Source # | Uses non-breaking spaces between the value and the unit, and within the unit name.  | 
| Show a => Show (Unit m d a) Source # | Unit names are shown with non-breaking spaces.  | 
| Show c => Show (K1 i c p) | Since: base-4.7.0.0  | 
| (Show (f p), Show (g p)) => Show ((f :+: g) p) | Since: base-4.7.0.0  | 
| (Show (f p), Show (g p)) => Show ((f :*: g) p) | Since: base-4.7.0.0  | 
| (Show a, Show b, Show c, Show d) => Show (a, b, c, d) | Since: base-2.1  | 
| (Show1 f, Show1 g, Show a) => Show (Product f g a) | Since: base-4.9.0.0  | 
| (Show1 f, Show1 g, Show a) => Show (Sum f g a) | Since: base-4.9.0.0  | 
| Show (a :~~: b) | Since: base-4.10.0.0  | 
| Show (f p) => Show (M1 i c f p) | Since: base-4.7.0.0  | 
| Show (f (g p)) => Show ((f :.: g) p) | Since: base-4.7.0.0  | 
| (Show a, Show b, Show c, Show d, Show e) => Show (a, b, c, d, e) | Since: base-2.1  | 
| (Show1 f, Show1 g, Show a) => Show (Compose f g a) | Since: base-4.9.0.0  | 
| (Show a, Show b, Show c, Show d, Show e, Show f) => Show (a, b, c, d, e, f) | Since: base-2.1  | 
| (Show a, Show b, Show c, Show d, Show e, Show f, Show g) => Show (a, b, c, d, e, f, g) | Since: base-2.1  | 
| (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h) => Show (a, b, c, d, e, f, g, h) | Since: base-2.1  | 
| (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i) => Show (a, b, c, d, e, f, g, h, i) | Since: base-2.1  | 
| (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j) => Show (a, b, c, d, e, f, g, h, i, j) | Since: base-2.1  | 
| (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j, Show k) => Show (a, b, c, d, e, f, g, h, i, j, k) | Since: base-2.1  | 
| (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j, Show k, Show l) => Show (a, b, c, d, e, f, g, h, i, j, k, l) | Since: base-2.1  | 
| (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j, Show k, Show l, Show m) => Show (a, b, c, d, e, f, g, h, i, j, k, l, m) | Since: base-2.1  | 
| (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j, Show k, Show l, Show m, Show n) => Show (a, b, c, d, e, f, g, h, i, j, k, l, m, n) | Since: base-2.1  | 
| (Show a, Show b, Show c, Show d, Show e, Show f, Show g, Show h, Show i, Show j, Show k, Show l, Show m, Show n, Show o) => Show (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) | Since: base-2.1  | 
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.
(*>) :: f a -> f b -> f b infixl 4 #
Sequence actions, discarding the value of the first argument.
(<*) :: f a -> f b -> f a infixl 4 #
Sequence actions, discarding the value of the second argument.
Instances
| Applicative [] | Since: 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 First | Since: base-4.8.0.0  | 
| Applicative Last | Since: base-4.8.0.0  | 
| Applicative Dual | Since: base-4.8.0.0  | 
| Applicative Sum | Since: base-4.8.0.0  | 
| Applicative Product | 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 SmallArray | |
Defined in Data.Primitive.SmallArray Methods pure :: a -> SmallArray a # (<*>) :: SmallArray (a -> b) -> SmallArray a -> SmallArray b # liftA2 :: (a -> b -> c) -> SmallArray a -> SmallArray b -> SmallArray c # (*>) :: SmallArray a -> SmallArray b -> SmallArray b # (<*) :: SmallArray a -> SmallArray b -> SmallArray a #  | |
| Applicative Array | |
| Applicative Id | |
| Applicative Box | |
| 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  | 
| Applicative (ST s) | Since: base-4.4.0.0  | 
| 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  | 
| (Functor m, Monad m) => Applicative (MaybeT m) | |
| Applicative m => Applicative (ListT m) | |
| Applicative f => Applicative (Rec1 f) | Since: base-4.9.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 => Applicative (Ap f) | Since: base-4.12.0.0  | 
| Applicative f => Applicative (Alt f) | Since: base-4.8.0.0  | 
| (Monoid w, Applicative m) => Applicative (WriterT w m) | |
Defined in Control.Monad.Trans.Writer.Strict  | |
| (Monoid w, Functor m, Monad m) => Applicative (AccumT w m) | |
Defined in Control.Monad.Trans.Accum  | |
| (Monoid w, Applicative m) => Applicative (WriterT w m) | |
Defined in Control.Monad.Trans.Writer.Lazy  | |
| (Functor m, Monad m) => Applicative (StateT s m) | |
Defined in Control.Monad.Trans.State.Strict  | |
| (Functor m, Monad m) => Applicative (StateT s m) | |
Defined in Control.Monad.Trans.State.Lazy  | |
| (Functor m, Monad m) => Applicative (SelectT r m) | |
Defined in Control.Monad.Trans.Select  | |
| Applicative m => Applicative (IdentityT m) | |
Defined in Control.Monad.Trans.Identity  | |
| (Functor m, Monad m) => Applicative (ExceptT e m) | |
Defined in Control.Monad.Trans.Except  | |
| (Functor m, Monad m) => Applicative (ErrorT e m) | |
Defined in Control.Monad.Trans.Error  | |
| Applicative ((->) a :: 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  | 
| (Applicative f, Applicative g) => Applicative (Product f g) | Since: base-4.9.0.0  | 
Defined in Data.Functor.Product  | |
| Applicative m => Applicative (ReaderT r m) | |
Defined in Control.Monad.Trans.Reader  | |
| Applicative (ContT r m) | |
Defined in Control.Monad.Trans.Cont  | |
| 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  | |
| (Monoid w, Functor m, Monad m) => Applicative (RWST r w s m) | |
Defined in Control.Monad.Trans.RWS.Strict  | |
| (Monoid w, Functor m, Monad m) => Applicative (RWST r w s m) | |
Defined in Control.Monad.Trans.RWS.Lazy  | |
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.
foldr :: (a -> b -> b) -> b -> t a -> b #
Right-associative fold of a structure.
In the case of lists, foldr, when applied to a binary operator, a
 starting value (typically the right-identity of the operator), and a
 list, reduces the list using the binary operator, from right to left:
foldr f z [x1, x2, ..., xn] == x1 `f` (x2 `f` ... (xn `f` z)...)
Note that, since the head of the resulting expression is produced by
 an application of the operator to the first element of the list,
 foldr can produce a terminating expression from an infinite list.
For a general Foldable structure this should be semantically identical
 to,
foldr f z =foldrf z .toList
foldl :: (b -> a -> b) -> b -> t a -> b #
Left-associative fold of a structure.
In the case of lists, foldl, when applied to a binary
 operator, a starting value (typically the left-identity of the operator),
 and a list, reduces the list using the binary operator, from left to
 right:
foldl f z [x1, x2, ..., xn] == (...((z `f` x1) `f` x2) `f`...) `f` xn
Note that to produce the outermost application of the operator the
 entire input list must be traversed. This means that foldl' will
 diverge if given an infinite list.
Also note that if you want an efficient left-fold, you probably want to
 use foldl' instead of foldl. The reason for this is that latter does
 not force the "inner" results (e.g. z  in the above example)
 before applying them to the operator (e.g. to f x1(). This results
 in a thunk chain f x2)O(n) elements long, which then must be evaluated from
 the outside-in.
For a general Foldable structure this should be semantically identical
 to,
foldl f z =foldlf z .toList
foldr1 :: (a -> a -> a) -> t a -> a #
A variant of foldr that has no base case,
 and thus may only be applied to non-empty structures.
foldr1f =foldr1f .toList
foldl1 :: (a -> a -> a) -> t a -> a #
A variant of foldl that has no base case,
 and thus may only be applied to non-empty structures.
foldl1f =foldl1f .toList
Test whether the structure is empty. The default implementation is optimized for structures that are similar to cons-lists, because there is no general way to do better.
Returns the size/length of a finite structure as an Int.  The
 default implementation is optimized for structures that are similar to
 cons-lists, because there is no general way to do better.
elem :: Eq a => a -> t a -> Bool infix 4 #
Does the element occur in the structure?
Instances
| Foldable [] | Since: base-2.1  | 
Defined in Data.Foldable Methods fold :: Monoid m => [m] -> 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 SmallArray | |
Defined in Data.Primitive.SmallArray Methods fold :: Monoid m => SmallArray m -> m # foldMap :: Monoid m => (a -> m) -> SmallArray a -> m # foldr :: (a -> b -> b) -> b -> SmallArray a -> b # foldr' :: (a -> b -> b) -> b -> SmallArray a -> b # foldl :: (b -> a -> b) -> b -> SmallArray a -> b # foldl' :: (b -> a -> b) -> b -> SmallArray a -> b # foldr1 :: (a -> a -> a) -> SmallArray a -> a # foldl1 :: (a -> a -> a) -> SmallArray a -> a # toList :: SmallArray a -> [a] # null :: SmallArray a -> Bool # length :: SmallArray a -> Int # elem :: Eq a => a -> SmallArray a -> Bool # maximum :: Ord a => SmallArray a -> a # minimum :: Ord a => SmallArray a -> a # sum :: Num a => SmallArray a -> a # product :: Num a => SmallArray a -> a #  | |
| Foldable Array | |
Defined in Data.Primitive.Array Methods fold :: Monoid m => Array m -> m # foldMap :: Monoid m => (a -> m) -> Array a -> m # foldr :: (a -> b -> b) -> b -> Array a -> b # foldr' :: (a -> b -> b) -> b -> Array a -> b # foldl :: (b -> a -> b) -> b -> Array a -> b # foldl' :: (b -> a -> b) -> b -> Array a -> b # foldr1 :: (a -> a -> a) -> Array a -> a # foldl1 :: (a -> a -> a) -> Array a -> a # elem :: Eq a => a -> Array a -> Bool # maximum :: Ord a => Array a -> a # minimum :: Ord a => Array 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 # 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 # 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 # 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 ((,) 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 # 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 # 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 # 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 # 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 f => Foldable (MaybeT f) | |
Defined in Control.Monad.Trans.Maybe Methods fold :: Monoid m => MaybeT f m -> m # foldMap :: Monoid m => (a -> m) -> MaybeT f a -> m # foldr :: (a -> b -> b) -> b -> MaybeT f a -> b # foldr' :: (a -> b -> b) -> b -> MaybeT f a -> b # foldl :: (b -> a -> b) -> b -> MaybeT f a -> b # foldl' :: (b -> a -> b) -> b -> MaybeT f a -> b # foldr1 :: (a -> a -> a) -> MaybeT f a -> a # foldl1 :: (a -> a -> a) -> MaybeT f a -> a # elem :: Eq a => a -> MaybeT f a -> Bool # maximum :: Ord a => MaybeT f a -> a # minimum :: Ord a => MaybeT f a -> a #  | |
| Foldable f => Foldable (ListT f) | |
Defined in Control.Monad.Trans.List Methods fold :: Monoid m => ListT f m -> m # foldMap :: Monoid m => (a -> m) -> ListT f a -> m # foldr :: (a -> b -> b) -> b -> ListT f a -> b # foldr' :: (a -> b -> b) -> b -> ListT f a -> b # foldl :: (b -> a -> b) -> b -> ListT f a -> b # foldl' :: (b -> a -> b) -> b -> ListT f a -> b # foldr1 :: (a -> a -> a) -> ListT f a -> a # foldl1 :: (a -> a -> a) -> ListT f a -> a # elem :: Eq a => a -> ListT f a -> Bool # maximum :: Ord a => ListT f a -> a # minimum :: Ord a => ListT f 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 # 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 (URec Char :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => URec Char m -> m # foldMap :: Monoid m => (a -> m) -> URec Char a -> m # foldr :: (a -> b -> b) -> b -> URec Char a -> b # foldr' :: (a -> b -> b) -> b -> URec Char a -> b # foldl :: (b -> a -> b) -> b -> URec Char a -> b # foldl' :: (b -> a -> b) -> b -> URec Char a -> b # foldr1 :: (a -> a -> a) -> URec Char a -> a # foldl1 :: (a -> a -> a) -> URec Char a -> a # toList :: URec Char a -> [a] # length :: URec Char a -> Int # elem :: Eq a => a -> URec Char a -> Bool # maximum :: Ord a => URec Char a -> a # minimum :: Ord a => URec Char a -> a #  | |
| Foldable (URec Double :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => URec Double m -> m # foldMap :: Monoid m => (a -> m) -> URec Double a -> m # foldr :: (a -> b -> b) -> b -> URec Double a -> b # foldr' :: (a -> b -> b) -> b -> URec Double a -> b # foldl :: (b -> a -> b) -> b -> URec Double a -> b # foldl' :: (b -> a -> b) -> b -> URec Double a -> b # foldr1 :: (a -> a -> a) -> URec Double a -> a # foldl1 :: (a -> a -> a) -> URec Double a -> a # toList :: URec Double a -> [a] # null :: URec Double a -> Bool # length :: URec Double a -> Int # elem :: Eq a => a -> URec Double a -> Bool # maximum :: Ord a => URec Double a -> a # minimum :: Ord a => URec Double a -> a #  | |
| Foldable (URec Float :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => URec Float m -> m # foldMap :: Monoid m => (a -> m) -> URec Float a -> m # foldr :: (a -> b -> b) -> b -> URec Float a -> b # foldr' :: (a -> b -> b) -> b -> URec Float a -> b # foldl :: (b -> a -> b) -> b -> URec Float a -> b # foldl' :: (b -> a -> b) -> b -> URec Float a -> b # foldr1 :: (a -> a -> a) -> URec Float a -> a # foldl1 :: (a -> a -> a) -> URec Float a -> a # toList :: URec Float a -> [a] # null :: URec Float a -> Bool # length :: URec Float a -> Int # elem :: Eq a => a -> URec Float a -> Bool # maximum :: Ord a => URec Float a -> a # minimum :: Ord a => URec Float a -> a #  | |
| Foldable (URec Int :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => URec Int m -> m # foldMap :: Monoid m => (a -> m) -> URec Int a -> m # foldr :: (a -> b -> b) -> b -> URec Int a -> b # foldr' :: (a -> b -> b) -> b -> URec Int a -> b # foldl :: (b -> a -> b) -> b -> URec Int a -> b # foldl' :: (b -> a -> b) -> b -> URec Int a -> b # foldr1 :: (a -> a -> a) -> URec Int a -> a # foldl1 :: (a -> a -> a) -> URec Int a -> a # elem :: Eq a => a -> URec Int a -> Bool # maximum :: Ord a => URec Int a -> a # minimum :: Ord a => URec Int a -> a #  | |
| Foldable (URec Word :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => URec Word m -> m # foldMap :: Monoid m => (a -> m) -> URec Word a -> m # foldr :: (a -> b -> b) -> b -> URec Word a -> b # foldr' :: (a -> b -> b) -> b -> URec Word a -> b # foldl :: (b -> a -> b) -> b -> URec Word a -> b # foldl' :: (b -> a -> b) -> b -> URec Word a -> b # foldr1 :: (a -> a -> a) -> URec Word a -> a # foldl1 :: (a -> a -> a) -> URec Word a -> a # toList :: URec Word a -> [a] # length :: URec Word a -> Int # elem :: Eq a => a -> URec Word a -> Bool # maximum :: Ord a => URec Word a -> a # minimum :: Ord a => URec Word a -> a #  | |
| Foldable (URec (Ptr ()) :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => URec (Ptr ()) m -> m # foldMap :: Monoid m => (a -> m) -> URec (Ptr ()) a -> m # foldr :: (a -> b -> b) -> b -> URec (Ptr ()) a -> b # foldr' :: (a -> b -> b) -> b -> URec (Ptr ()) a -> b # foldl :: (b -> a -> b) -> b -> URec (Ptr ()) a -> b # foldl' :: (b -> a -> b) -> b -> URec (Ptr ()) a -> b # foldr1 :: (a -> a -> a) -> URec (Ptr ()) a -> a # foldl1 :: (a -> a -> a) -> URec (Ptr ()) a -> a # toList :: URec (Ptr ()) a -> [a] # null :: URec (Ptr ()) a -> Bool # length :: URec (Ptr ()) a -> Int # elem :: Eq a => a -> URec (Ptr ()) a -> Bool # maximum :: Ord a => URec (Ptr ()) a -> a # minimum :: Ord a => URec (Ptr ()) 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 # 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 # 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 # 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 f => Foldable (WriterT w f) | |
Defined in Control.Monad.Trans.Writer.Strict Methods fold :: Monoid m => WriterT w f m -> m # foldMap :: Monoid m => (a -> m) -> WriterT w f a -> m # foldr :: (a -> b -> b) -> b -> WriterT w f a -> b # foldr' :: (a -> b -> b) -> b -> WriterT w f a -> b # foldl :: (b -> a -> b) -> b -> WriterT w f a -> b # foldl' :: (b -> a -> b) -> b -> WriterT w f a -> b # foldr1 :: (a -> a -> a) -> WriterT w f a -> a # foldl1 :: (a -> a -> a) -> WriterT w f a -> a # toList :: WriterT w f a -> [a] # null :: WriterT w f a -> Bool # length :: WriterT w f a -> Int # elem :: Eq a => a -> WriterT w f a -> Bool # maximum :: Ord a => WriterT w f a -> a # minimum :: Ord a => WriterT w f a -> a #  | |
| Foldable f => Foldable (WriterT w f) | |
Defined in Control.Monad.Trans.Writer.Lazy Methods fold :: Monoid m => WriterT w f m -> m # foldMap :: Monoid m => (a -> m) -> WriterT w f a -> m # foldr :: (a -> b -> b) -> b -> WriterT w f a -> b # foldr' :: (a -> b -> b) -> b -> WriterT w f a -> b # foldl :: (b -> a -> b) -> b -> WriterT w f a -> b # foldl' :: (b -> a -> b) -> b -> WriterT w f a -> b # foldr1 :: (a -> a -> a) -> WriterT w f a -> a # foldl1 :: (a -> a -> a) -> WriterT w f a -> a # toList :: WriterT w f a -> [a] # null :: WriterT w f a -> Bool # length :: WriterT w f a -> Int # elem :: Eq a => a -> WriterT w f a -> Bool # maximum :: Ord a => WriterT w f a -> a # minimum :: Ord a => WriterT w f a -> a #  | |
| Foldable f => Foldable (IdentityT f) | |
Defined in Control.Monad.Trans.Identity Methods fold :: Monoid m => IdentityT f m -> m # foldMap :: Monoid m => (a -> m) -> IdentityT f a -> m # foldr :: (a -> b -> b) -> b -> IdentityT f a -> b # foldr' :: (a -> b -> b) -> b -> IdentityT f a -> b # foldl :: (b -> a -> b) -> b -> IdentityT f a -> b # foldl' :: (b -> a -> b) -> b -> IdentityT f a -> b # foldr1 :: (a -> a -> a) -> IdentityT f a -> a # foldl1 :: (a -> a -> a) -> IdentityT f a -> a # toList :: IdentityT f a -> [a] # null :: IdentityT f a -> Bool # length :: IdentityT f a -> Int # elem :: Eq a => a -> IdentityT f a -> Bool # maximum :: Ord a => IdentityT f a -> a # minimum :: Ord a => IdentityT f a -> a #  | |
| Foldable f => Foldable (ExceptT e f) | |
Defined in Control.Monad.Trans.Except Methods fold :: Monoid m => ExceptT e f m -> m # foldMap :: Monoid m => (a -> m) -> ExceptT e f a -> m # foldr :: (a -> b -> b) -> b -> ExceptT e f a -> b # foldr' :: (a -> b -> b) -> b -> ExceptT e f a -> b # foldl :: (b -> a -> b) -> b -> ExceptT e f a -> b # foldl' :: (b -> a -> b) -> b -> ExceptT e f a -> b # foldr1 :: (a -> a -> a) -> ExceptT e f a -> a # foldl1 :: (a -> a -> a) -> ExceptT e f a -> a # toList :: ExceptT e f a -> [a] # null :: ExceptT e f a -> Bool # length :: ExceptT e f a -> Int # elem :: Eq a => a -> ExceptT e f a -> Bool # maximum :: Ord a => ExceptT e f a -> a # minimum :: Ord a => ExceptT e f a -> a #  | |
| Foldable f => Foldable (ErrorT e f) | |
Defined in Control.Monad.Trans.Error Methods fold :: Monoid m => ErrorT e f m -> m # foldMap :: Monoid m => (a -> m) -> ErrorT e f a -> m # foldr :: (a -> b -> b) -> b -> ErrorT e f a -> b # foldr' :: (a -> b -> b) -> b -> ErrorT e f a -> b # foldl :: (b -> a -> b) -> b -> ErrorT e f a -> b # foldl' :: (b -> a -> b) -> b -> ErrorT e f a -> b # foldr1 :: (a -> a -> a) -> ErrorT e f a -> a # foldl1 :: (a -> a -> a) -> ErrorT e f a -> a # toList :: ErrorT e f a -> [a] # null :: ErrorT e f a -> Bool # length :: ErrorT e f a -> Int # elem :: Eq a => a -> ErrorT e f a -> Bool # maximum :: Ord a => ErrorT e f a -> a # minimum :: Ord a => ErrorT e 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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 # 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.
and the identity functor Identity and composition of functors Compose
 are defined as
  newtype Identity a = Identity a
  instance Functor Identity where
    fmap f (Identity x) = Identity (f x)
  instance Applicative Identity where
    pure x = Identity x
    Identity f <*> Identity x = Identity (f x)
  newtype Compose f g a = Compose (f (g a))
  instance (Functor f, Functor g) => Functor (Compose f g) where
    fmap f (Compose x) = Compose (fmap (fmap f) x)
  instance (Applicative f, Applicative g) => Applicative (Compose f g) where
    pure x = Compose (pure (pure x))
    Compose f <*> Compose x = Compose ((<*>) <$> f <*> x)(The naturality law is implied by parametricity.)
Instances are similar to Functor, e.g. given a data type
data Tree a = Empty | Leaf a | Node (Tree a) a (Tree a)
a suitable instance would be
instance Traversable Tree where traverse f Empty = pure Empty traverse f (Leaf x) = Leaf <$> f x traverse f (Node l k r) = Node <$> traverse f l <*> f k <*> traverse f r
This is suitable even for abstract types, as the laws for <*>
 imply a form of associativity.
The superclass instances should satisfy the following:
- In the 
Functorinstance,fmapshould be equivalent to traversal with the identity applicative functor (fmapDefault). - In the 
Foldableinstance,foldMapshould be equivalent to traversal with a constant applicative functor (foldMapDefault). 
Methods
traverse :: Applicative f => (a -> f b) -> t a -> f (t b) #
Map each element of a structure to an action, evaluate these actions
 from left to right, and collect the results. For a version that ignores
 the results see traverse_.
sequenceA :: Applicative f => t (f a) -> f (t a) #
Evaluate each action in the structure from left to right, and
 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
The class of semigroups (types with an associative binary operation).
Instances should satisfy the associativity law:
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 All | Since: base-4.9.0.0  | 
| Semigroup Any | Since: base-4.9.0.0  | 
| Semigroup ExactPi | The multiplicative semigroup over   | 
| Semigroup ByteArray | |
| Semigroup Dimension' Source # | |
Defined in Numeric.Units.Dimensional.Dimensions.TermLevel Methods (<>) :: Dimension' -> Dimension' -> Dimension' # sconcat :: NonEmpty Dimension' -> Dimension' # stimes :: Integral b => b -> Dimension' -> Dimension' #  | |
| Semigroup AnyUnit Source # | |
| 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 (First a) | Since: base-4.9.0.0  | 
| Semigroup (Last a) | Since: base-4.9.0.0  | 
| Semigroup a => Semigroup (Dual a) | Since: base-4.9.0.0  | 
| Semigroup (Endo a) | Since: base-4.9.0.0  | 
| Num a => Semigroup (Sum a) | Since: base-4.9.0.0  | 
| Num a => Semigroup (Product 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  | 
| PrimUnlifted a => Semigroup (UnliftedArray a) | Since: primitive-0.6.4.0  | 
Defined in Data.Primitive.UnliftedArray Methods (<>) :: UnliftedArray a -> UnliftedArray a -> UnliftedArray a # sconcat :: NonEmpty (UnliftedArray a) -> UnliftedArray a # stimes :: Integral b => b -> UnliftedArray a -> UnliftedArray a #  | |
| Semigroup (PrimArray a) | Since: primitive-0.6.4.0  | 
| Semigroup (SmallArray a) | Since: primitive-0.6.3.0  | 
Defined in Data.Primitive.SmallArray Methods (<>) :: SmallArray a -> SmallArray a -> SmallArray a # sconcat :: NonEmpty (SmallArray a) -> SmallArray a # stimes :: Integral b => b -> SmallArray a -> SmallArray a #  | |
| Semigroup (Array a) | Since: primitive-0.6.3.0  | 
| Prim a => Semigroup (Vector a) | |
| Num a => Semigroup (DynQuantity a) Source # | 
  | 
Defined in Numeric.Units.Dimensional.Dynamic Methods (<>) :: DynQuantity a -> DynQuantity a -> DynQuantity a # sconcat :: NonEmpty (DynQuantity a) -> DynQuantity a # stimes :: Integral b => b -> DynQuantity a -> DynQuantity a #  | |
| Num a => Semigroup (AnyQuantity a) Source # | 
  | 
Defined in Numeric.Units.Dimensional.Dynamic Methods (<>) :: AnyQuantity a -> AnyQuantity a -> AnyQuantity a # sconcat :: NonEmpty (AnyQuantity a) -> AnyQuantity a # stimes :: Integral b => b -> AnyQuantity a -> AnyQuantity a #  | |
| 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 a => Semigroup (ST s a) | Since: base-4.11.0.0  | 
| Semigroup (Proxy s) | Since: base-4.9.0.0  | 
| 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  | 
| (Applicative f, Semigroup a) => Semigroup (Ap f a) | Since: base-4.12.0.0  | 
| Alternative f => Semigroup (Alt f a) | Since: base-4.9.0.0  | 
| Num a => Semigroup (SQuantity s d a) Source # | 
  | 
| 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 laws:
x
<>mempty= xmempty<>x = xx(<>(y<>z) = (x<>y)<>zSemigrouplaw)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
An associative operation
NOTE: This method is redundant and has the default
 implementation  since base-4.11.0.0.mappend = '(<>)'
Fold a list using the monoid.
For most types, the default definition for mconcat will be
 used, but the function is included in the class definition so
 that an optimized version can be provided for specific types.
Instances
| Monoid Ordering | Since: base-2.1  | 
| Monoid () | Since: base-2.1  | 
| Monoid All | Since: base-2.1  | 
| Monoid Any | Since: base-2.1  | 
| Monoid ExactPi | The multiplicative monoid over   | 
| Monoid ByteArray | |
| Monoid Dimension' Source # | The monoid of dimensions under multiplication.  | 
Defined in Numeric.Units.Dimensional.Dimensions.TermLevel Methods mempty :: Dimension' # mappend :: Dimension' -> Dimension' -> Dimension' # mconcat :: [Dimension'] -> Dimension' #  | |
| Monoid AnyUnit Source # | |
| 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 (First a) | Since: base-2.1  | 
| Monoid (Last a) | Since: base-2.1  | 
| Monoid a => Monoid (Dual a) | Since: base-2.1  | 
| Monoid (Endo a) | Since: base-2.1  | 
| Num a => Monoid (Sum a) | Since: base-2.1  | 
| Num a => Monoid (Product a) | Since: base-2.1  | 
| Monoid a => Monoid (Down a) | Since: base-4.11.0.0  | 
| PrimUnlifted a => Monoid (UnliftedArray a) | Since: primitive-0.6.4.0  | 
Defined in Data.Primitive.UnliftedArray Methods mempty :: UnliftedArray a # mappend :: UnliftedArray a -> UnliftedArray a -> UnliftedArray a # mconcat :: [UnliftedArray a] -> UnliftedArray a #  | |
| Monoid (PrimArray a) | Since: primitive-0.6.4.0  | 
| Monoid (SmallArray a) | |
Defined in Data.Primitive.SmallArray Methods mempty :: SmallArray a # mappend :: SmallArray a -> SmallArray a -> SmallArray a # mconcat :: [SmallArray a] -> SmallArray a #  | |
| Monoid (Array a) | |
| Prim a => Monoid (Vector a) | |
| Num a => Monoid (DynQuantity a) Source # | 
  | 
Defined in Numeric.Units.Dimensional.Dynamic Methods mempty :: DynQuantity a # mappend :: DynQuantity a -> DynQuantity a -> DynQuantity a # mconcat :: [DynQuantity a] -> DynQuantity a #  | |
| Num a => Monoid (AnyQuantity a) Source # | 
  | 
Defined in Numeric.Units.Dimensional.Dynamic Methods mempty :: AnyQuantity a # mappend :: AnyQuantity a -> AnyQuantity a -> AnyQuantity a # mconcat :: [AnyQuantity a] -> AnyQuantity a #  | |
| 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 a => Monoid (ST s a) | Since: base-4.11.0.0  | 
| Monoid (Proxy s) | Since: base-4.7.0.0  | 
| 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  | 
| (Applicative f, Monoid a) => Monoid (Ap f a) | Since: base-4.12.0.0  | 
| Alternative f => Monoid (Alt f a) | Since: base-4.8.0.0  | 
| Num a => Monoid (SQuantity s d a) Source # | 
  | 
| 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
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
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
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  | 
| Data Float | Since: base-4.0.0.0  | 
Defined in Data.Data Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Float -> c Float # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Float # dataTypeOf :: Float -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Float) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Float) # gmapT :: (forall b. Data b => b -> b) -> Float -> Float # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Float -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Float -> r # gmapQ :: (forall d. Data d => d -> u) -> Float -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> Float -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Float -> m Float # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Float -> m Float # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Float -> m Float #  | |
| 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 #  | |
| Storable Float | Since: base-2.1  | 
| NFData Float | |
Defined in Control.DeepSeq  | |
| AEq Float | |
| IEEE Float | |
Defined in Numeric.IEEE Methods minDenormal :: Float # copySign :: Float -> Float -> Float # identicalIEEE :: Float -> Float -> Bool # bisectIEEE :: Float -> Float -> Float # sameSignificandBits :: Float -> Float -> Int # nanWithPayload :: Word64 -> Float # maxNaNPayload :: Float -> Word64 # nanPayload :: Float -> Word64 #  | |
| Prim Float | |
Defined in Data.Primitive.Types Methods alignment# :: Float -> Int# # indexByteArray# :: ByteArray# -> Int# -> Float # readByteArray# :: MutableByteArray# s -> Int# -> State# s -> (#State# s, Float#) # writeByteArray# :: MutableByteArray# s -> Int# -> Float -> State# s -> State# s # setByteArray# :: MutableByteArray# s -> Int# -> Int# -> Float -> State# s -> State# s # indexOffAddr# :: Addr# -> Int# -> Float # readOffAddr# :: Addr# -> Int# -> State# s -> (#State# s, Float#) # writeOffAddr# :: Addr# -> Int# -> Float -> State# s -> State# s # setOffAddr# :: Addr# -> Int# -> Int# -> Float -> State# s -> State# s #  | |
| Unbox Float | |
Defined in Data.Vector.Unboxed.Base  | |
| Vector Vector Float | |
Defined in Data.Vector.Unboxed.Base Methods basicUnsafeFreeze :: PrimMonad m => Mutable Vector (PrimState m) Float -> m (Vector Float) # basicUnsafeThaw :: PrimMonad m => Vector Float -> m (Mutable Vector (PrimState m) Float) # basicLength :: Vector Float -> Int # basicUnsafeSlice :: Int -> Int -> Vector Float -> Vector Float # basicUnsafeIndexM :: Monad m => Vector Float -> Int -> m Float # basicUnsafeCopy :: PrimMonad m => Mutable Vector (PrimState m) Float -> Vector Float -> m () #  | |
| MVector MVector Float | |
Defined in Data.Vector.Unboxed.Base Methods basicLength :: MVector s Float -> Int # basicUnsafeSlice :: Int -> Int -> MVector s Float -> MVector s Float # basicOverlaps :: MVector s Float -> MVector s Float -> Bool # basicUnsafeNew :: PrimMonad m => Int -> m (MVector (PrimState m) Float) # basicInitialize :: PrimMonad m => MVector (PrimState m) Float -> m () # basicUnsafeReplicate :: PrimMonad m => Int -> Float -> m (MVector (PrimState m) Float) # basicUnsafeRead :: PrimMonad m => MVector (PrimState m) Float -> Int -> m Float # basicUnsafeWrite :: PrimMonad m => MVector (PrimState m) Float -> Int -> Float -> m () # basicClear :: PrimMonad m => MVector (PrimState m) Float -> m () # basicSet :: PrimMonad m => MVector (PrimState m) Float -> Float -> m () # basicUnsafeCopy :: PrimMonad m => MVector (PrimState m) Float -> MVector (PrimState m) Float -> m () # basicUnsafeMove :: PrimMonad m => MVector (PrimState m) Float -> MVector (PrimState m) Float -> m () # basicUnsafeGrow :: PrimMonad m => MVector (PrimState m) Float -> Int -> m (MVector (PrimState m) Float) #  | |
| Generic1 (URec Float :: k -> Type) | |
| AEq (Complex Float) | |
| Functor (URec Float :: Type -> Type) | Since: base-4.9.0.0  | 
| Foldable (URec Float :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => URec Float m -> m # foldMap :: Monoid m => (a -> m) -> URec Float a -> m # foldr :: (a -> b -> b) -> b -> URec Float a -> b # foldr' :: (a -> b -> b) -> b -> URec Float a -> b # foldl :: (b -> a -> b) -> b -> URec Float a -> b # foldl' :: (b -> a -> b) -> b -> URec Float a -> b # foldr1 :: (a -> a -> a) -> URec Float a -> a # foldl1 :: (a -> a -> a) -> URec Float a -> a # toList :: URec Float a -> [a] # null :: URec Float a -> Bool # length :: URec Float a -> Int # elem :: Eq a => a -> URec Float a -> Bool # maximum :: Ord a => URec Float a -> a # minimum :: Ord a => URec Float a -> a #  | |
| Traversable (URec Float :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Traversable  | |
| Eq (URec Float p) | |
| Ord (URec Float p) | |
Defined in GHC.Generics  | |
| Show (URec Float p) | |
| Generic (URec Float p) | |
| data Vector Float | |
| data URec Float (p :: k) | Used for marking occurrences of  Since: base-4.9.0.0  | 
| data MVector s Float | |
| type Rep1 (URec Float :: k -> Type) | Since: base-4.9.0.0  | 
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  | 
| Data Int | Since: base-4.0.0.0  | 
Defined in Data.Data Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Int -> c Int # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Int # dataTypeOf :: Int -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Int) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Int) # gmapT :: (forall b. Data b => b -> b) -> Int -> Int # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Int -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Int -> r # gmapQ :: (forall d. Data d => d -> u) -> Int -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> Int -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Int -> m Int # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Int -> m Int # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Int -> m Int #  | |
| 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  | 
| Storable Int | Since: base-2.1  | 
Defined in Foreign.Storable  | |
| Bits Int | Since: base-2.1  | 
Defined in Data.Bits  | |
| FiniteBits Int | Since: base-4.6.0.0  | 
Defined in Data.Bits Methods finiteBitSize :: Int -> Int # countLeadingZeros :: Int -> Int # countTrailingZeros :: Int -> Int #  | |
| NFData Int | |
Defined in Control.DeepSeq  | |
| AEq Int | |
| Prim Int | |
Defined in Data.Primitive.Types Methods alignment# :: Int -> Int# # indexByteArray# :: ByteArray# -> Int# -> Int # readByteArray# :: MutableByteArray# s -> Int# -> State# s -> (#State# s, Int#) # writeByteArray# :: MutableByteArray# s -> Int# -> Int -> State# s -> State# s # setByteArray# :: MutableByteArray# s -> Int# -> Int# -> Int -> State# s -> State# s # indexOffAddr# :: Addr# -> Int# -> Int # readOffAddr# :: Addr# -> Int# -> State# s -> (#State# s, Int#) # writeOffAddr# :: Addr# -> Int# -> Int -> State# s -> State# s # setOffAddr# :: Addr# -> Int# -> Int# -> Int -> State# s -> State# s #  | |
| Unbox Int | |
Defined in Data.Vector.Unboxed.Base  | |
| Vector Vector Int | |
Defined in Data.Vector.Unboxed.Base Methods basicUnsafeFreeze :: PrimMonad m => Mutable Vector (PrimState m) Int -> m (Vector Int) # basicUnsafeThaw :: PrimMonad m => Vector Int -> m (Mutable Vector (PrimState m) Int) # basicLength :: Vector Int -> Int # basicUnsafeSlice :: Int -> Int -> Vector Int -> Vector Int # basicUnsafeIndexM :: Monad m => Vector Int -> Int -> m Int # basicUnsafeCopy :: PrimMonad m => Mutable Vector (PrimState m) Int -> Vector Int -> m () #  | |
| MVector MVector Int | |
Defined in Data.Vector.Unboxed.Base Methods basicLength :: MVector s Int -> Int # basicUnsafeSlice :: Int -> Int -> MVector s Int -> MVector s Int # basicOverlaps :: MVector s Int -> MVector s Int -> Bool # basicUnsafeNew :: PrimMonad m => Int -> m (MVector (PrimState m) Int) # basicInitialize :: PrimMonad m => MVector (PrimState m) Int -> m () # basicUnsafeReplicate :: PrimMonad m => Int -> Int -> m (MVector (PrimState m) Int) # basicUnsafeRead :: PrimMonad m => MVector (PrimState m) Int -> Int -> m Int # basicUnsafeWrite :: PrimMonad m => MVector (PrimState m) Int -> Int -> Int -> m () # basicClear :: PrimMonad m => MVector (PrimState m) Int -> m () # basicSet :: PrimMonad m => MVector (PrimState m) Int -> Int -> m () # basicUnsafeCopy :: PrimMonad m => MVector (PrimState m) Int -> MVector (PrimState m) Int -> m () # basicUnsafeMove :: PrimMonad m => MVector (PrimState m) Int -> MVector (PrimState m) Int -> m () # basicUnsafeGrow :: PrimMonad m => MVector (PrimState m) Int -> Int -> m (MVector (PrimState m) Int) #  | |
| Generic1 (URec Int :: k -> Type) | |
| Functor (URec Int :: Type -> Type) | Since: base-4.9.0.0  | 
| Foldable (URec Int :: Type -> Type) | Since: base-4.9.0.0  | 
Defined in Data.Foldable Methods fold :: Monoid m => URec Int m -> m # foldMap :: Monoid m => (a -> m) -> URec Int a -> m # foldr :: (a -> b -> b) -> b -> URec Int a -> b # foldr' :: (a -> b -> b) -> b -> URec Int a -> b # foldl :: (b -> a -> b) -> b -> URec Int a -> b # foldl' :: (b -> a -> b) -> b -> URec Int a -> b # foldr1 :: (a -> a -> a) -> URec Int a -> a # foldl1 :: (a -> a -> a) -> URec Int a -> a # elem :: Eq a => a -> URec Int a -> Bool # maximum :: Ord a => URec Int a -> a # minimum :: Ord a => URec Int a -> a #  | |
| Traversable (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) | |
| data Vector Int | |
| data URec Int (p :: k) | Used for marking occurrences of  Since: base-4.9.0.0  | 
| data MVector s Int | |
| type Rep1 (URec Int :: k -> Type) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| type Rep (URec Int p) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
Invariant: Jn# and Jp# are used iff value doesn't fit in S#
Useful properties resulting from the invariants:
Instances
| Enum Integer | Since: base-2.1  | 
| Eq Integer | |
| Integral Integer | Since: base-2.0.1  | 
Defined in GHC.Real  | |
| Data Integer | Since: base-4.0.0.0  | 
Defined in Data.Data Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Integer -> c Integer # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Integer # toConstr :: Integer -> Constr # dataTypeOf :: Integer -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Integer) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Integer) # gmapT :: (forall b. Data b => b -> b) -> Integer -> Integer # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Integer -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Integer -> r # gmapQ :: (forall d. Data d => d -> u) -> Integer -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> Integer -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Integer -> m Integer # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Integer -> m Integer # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Integer -> m Integer #  | |
| 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.Arr  | |
| Bits Integer | Since: base-2.1  | 
Defined in Data.Bits Methods (.&.) :: Integer -> Integer -> Integer # (.|.) :: Integer -> Integer -> Integer # xor :: Integer -> Integer -> Integer # complement :: Integer -> Integer # shift :: Integer -> Int -> Integer # rotate :: Integer -> Int -> Integer # setBit :: Integer -> Int -> Integer # clearBit :: Integer -> Int -> Integer # complementBit :: Integer -> Int -> Integer # testBit :: Integer -> Int -> Bool # bitSizeMaybe :: Integer -> Maybe Int # shiftL :: Integer -> Int -> Integer # unsafeShiftL :: Integer -> Int -> Integer # shiftR :: Integer -> Int -> Integer # unsafeShiftR :: Integer -> Int -> Integer # rotateL :: Integer -> Int -> Integer #  | |
| NFData Integer | |
Defined in Control.DeepSeq  | |
| AEq Integer | |
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  | 
| 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 # 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  | 
| NFData1 Maybe | Since: deepseq-1.4.3.0  | 
Defined in Control.DeepSeq  | |
| Eq a => Eq (Maybe a) | Since: base-2.1  | 
| Data a => Data (Maybe a) | Since: base-4.0.0.0  | 
Defined in Data.Data Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Maybe a -> c (Maybe a) # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (Maybe a) # toConstr :: Maybe a -> Constr # dataTypeOf :: Maybe a -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c (Maybe a)) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (Maybe a)) # gmapT :: (forall b. Data b => b -> b) -> Maybe a -> Maybe a # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Maybe a -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Maybe a -> r # gmapQ :: (forall d. Data d => d -> u) -> Maybe a -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> Maybe a -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Maybe a -> m (Maybe a) # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Maybe a -> m (Maybe a) # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Maybe a -> m (Maybe a) #  | |
| 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) | |
| 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  | 
| SingKind a => SingKind (Maybe a) | Since: base-4.9.0.0  | 
Defined in GHC.Generics  | |
| NFData a => NFData (Maybe a) | |
Defined in Control.DeepSeq  | |
| AEq a => AEq (Maybe a) | |
| Generic1 Maybe | |
| 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) | Since: base-4.6.0.0  | 
| data Sing (b :: Maybe a) | |
| type DemoteRep (Maybe a) | |
Defined in GHC.Generics  | |
| type Rep1 Maybe | Since: base-4.6.0.0  | 
Instances
| Bounded Ordering | Since: base-2.1  | 
| Enum Ordering | Since: base-2.1  | 
| Eq Ordering | |
| Data Ordering | Since: base-4.0.0.0  | 
Defined in Data.Data Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Ordering -> c Ordering # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Ordering # toConstr :: Ordering -> Constr # dataTypeOf :: Ordering -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Ordering) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Ordering) # gmapT :: (forall b. Data b => b -> b) -> Ordering -> Ordering # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Ordering -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Ordering -> r # gmapQ :: (forall d. Data d => d -> u) -> Ordering -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> Ordering -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Ordering -> m Ordering # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Ordering -> m Ordering # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Ordering -> m 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.Arr  | |
| Generic Ordering | |
| Semigroup Ordering | Since: base-4.9.0.0  | 
| Monoid Ordering | Since: base-2.1  | 
| NFData Ordering | |
Defined in Control.DeepSeq  | |
| AEq Ordering | |
| type Rep Ordering | Since: base-4.6.0.0  | 
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  | 
| Applicative IO | Since: base-2.1  | 
| Alternative IO | Since: base-4.9.0.0  | 
| MonadPlus IO | Since: base-4.9.0.0  | 
| PrimMonad IO | |
| PrimBase IO | |
| Semigroup a => Semigroup (IO a) | Since: base-4.10.0.0  | 
| Monoid a => Monoid (IO a) | Since: base-4.9.0.0  | 
| type PrimState IO | |
Defined in Control.Monad.Primitive  | |
Instances
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  | 
| NFData2 Either | Since: deepseq-1.4.3.0  | 
Defined in Control.DeepSeq  | |
| 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 # 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  | 
| NFData a => NFData1 (Either a) | Since: deepseq-1.4.3.0  | 
Defined in Control.DeepSeq  | |
| Generic1 (Either a :: Type -> Type) | |
| (Eq a, Eq b) => Eq (Either a b) | Since: base-2.1  | 
| (Data a, Data b) => Data (Either a b) | Since: base-4.0.0.0  | 
Defined in Data.Data Methods gfoldl :: (forall d b0. Data d => c (d -> b0) -> d -> c b0) -> (forall g. g -> c g) -> Either a b -> c (Either a b) # gunfold :: (forall b0 r. Data b0 => c (b0 -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (Either a b) # toConstr :: Either a b -> Constr # dataTypeOf :: Either a b -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c (Either a b)) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (Either a b)) # gmapT :: (forall b0. Data b0 => b0 -> b0) -> Either a b -> Either a b # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Either a b -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Either a b -> r # gmapQ :: (forall d. Data d => d -> u) -> Either a b -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> Either a b -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Either a b -> m (Either a b) # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Either a b -> m (Either a b) # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Either a b -> m (Either a b) #  | |
| (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) | |
| Semigroup (Either a b) | Since: base-4.9.0.0  | 
| (NFData a, NFData b) => NFData (Either a b) | |
Defined in Control.DeepSeq  | |
| (AEq a, AEq b) => AEq (Either a b) | |
| type Rep1 (Either a :: Type -> Type) | Since: base-4.6.0.0  | 
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) | Since: base-4.6.0.0  | 
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.
userError :: String -> IOError #
Construct an IOException value with a string describing the error.
 The fail method of the IO instance of the Monad class raises a
 userError, thus:
instance Monad IO where ... fail s = ioError (userError s)
type IOError = IOException #
The Haskell 2010 type for exceptions in the IO monad.
 Any I/O operation may raise an IOException instead of returning a result.
 For a more general type of exception, including also those that arise
 in pure code, see Exception.
In Haskell 2010, this is an opaque type.
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
 
(<$>) :: 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)
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.
(!!) :: [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 #
lookup key assocs looks up a key in an association list.
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.
Return all the elements of a list except the last one. The list must be 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""
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.
($!) :: (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 :: HasCallStack => a #
errorWithoutStackTrace :: [Char] -> a #
A variant of error that does not produce a stack trace.
Since: base-4.9.0.0
error :: HasCallStack => [Char] -> a #
error stops execution and displays an error message.