-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Foundation scrap box of array & string -- -- Foundation most basic primitives without any dependencies @package basement @version 0.0.13 -- | A bifunctor is a type constructor that takes two type arguments and is -- a functor in both arguments. That is, unlike with -- Functor, a type constructor such as Either does not -- need to be partially applied for a Bifunctor instance, and the -- methods in this class permit mapping functions over the Left -- value or the Right value, or both at the same time. -- -- Formally, the class Bifunctor represents a bifunctor from -- Hask -> Hask. -- -- Intuitively it is a bifunctor where both the first and second -- arguments are covariant. -- -- You can define a Bifunctor by either defining bimap or -- by defining both first and second. module Basement.Compat.Bifunctor -- | A bifunctor is a type constructor that takes two type arguments and is -- a functor in both arguments. That is, unlike with -- Functor, a type constructor such as Either does not need -- to be partially applied for a Bifunctor instance, and the -- methods in this class permit mapping functions over the Left -- value or the Right value, or both at the same time. -- -- Formally, the class Bifunctor represents a bifunctor from -- Hask -> Hask. -- -- Intuitively it is a bifunctor where both the first and second -- arguments are covariant. -- -- You can define a Bifunctor by either defining bimap or -- by defining both first and second. -- -- If you supply bimap, you should ensure that: -- --
-- bimap id id ≡ id ---- -- If you supply first and second, ensure: -- --
-- first id ≡ id -- second id ≡ id ---- -- If you supply both, you should also ensure: -- --
-- bimap f g ≡ first f . second g ---- -- These ensure by parametricity: -- --
-- bimap (f . g) (h . i) ≡ bimap f h . bimap g i -- first (f . g) ≡ first f . first g -- second (f . g) ≡ second f . second g --class Bifunctor (p :: Type -> Type -> Type) -- | Map over both arguments at the same time. -- --
-- bimap f g ≡ first f . second g ---- --
-- >>> bimap toUpper (+1) ('j', 3)
-- ('J',4)
--
--
-- -- >>> bimap toUpper (+1) (Left 'j') -- Left 'J' ---- --
-- >>> bimap toUpper (+1) (Right 3) -- Right 4 --bimap :: Bifunctor p => (a -> b) -> (c -> d) -> p a c -> p b d -- | Map covariantly over the first argument. -- --
-- first f ≡ bimap f id ---- --
-- >>> first toUpper ('j', 3)
-- ('J',3)
--
--
-- -- >>> first toUpper (Left 'j') -- Left 'J' --first :: Bifunctor p => (a -> b) -> p a c -> p b c -- | Map covariantly over the second argument. -- --
-- second ≡ bimap id ---- --
-- >>> second (+1) ('j', 3)
-- ('j',4)
--
--
-- -- >>> second (+1) (Right 3) -- Right 4 --second :: Bifunctor p => (b -> c) -> p a b -> p a c -- | Literal support for Integral and Fractional {--} {--} module Basement.Compat.C.Types -- | Haskell type representing the C char type. (The concrete -- types of Foreign.C.Types#platform are platform-specific.) newtype CChar CChar :: Int8 -> CChar -- | Haskell type representing the C signed char type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CSChar CSChar :: Int8 -> CSChar -- | Haskell type representing the C unsigned char type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CUChar CUChar :: Word8 -> CUChar -- | Haskell type representing the C short type. (The concrete -- types of Foreign.C.Types#platform are platform-specific.) newtype CShort CShort :: Int16 -> CShort -- | Haskell type representing the C unsigned short type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CUShort CUShort :: Word16 -> CUShort -- | Haskell type representing the C int type. (The concrete -- types of Foreign.C.Types#platform are platform-specific.) newtype CInt CInt :: Int32 -> CInt -- | Haskell type representing the C unsigned int type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CUInt CUInt :: Word32 -> CUInt -- | Haskell type representing the C long type. (The concrete -- types of Foreign.C.Types#platform are platform-specific.) newtype CLong CLong :: Int64 -> CLong -- | Haskell type representing the C unsigned long type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CULong CULong :: Word64 -> CULong -- | Haskell type representing the C ptrdiff_t type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CPtrdiff CPtrdiff :: Int64 -> CPtrdiff -- | Haskell type representing the C size_t type. (The concrete -- types of Foreign.C.Types#platform are platform-specific.) newtype CSize CSize :: Word64 -> CSize -- | Haskell type representing the C wchar_t type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CWchar CWchar :: Int32 -> CWchar -- | Haskell type representing the C sig_atomic_t type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CSigAtomic CSigAtomic :: Int32 -> CSigAtomic -- | Haskell type representing the C long long type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CLLong CLLong :: Int64 -> CLLong -- | Haskell type representing the C unsigned long long type. -- (The concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CULLong CULLong :: Word64 -> CULLong -- | Haskell type representing the C bool type. (The concrete -- types of Foreign.C.Types#platform are platform-specific.) newtype CBool CBool :: Word8 -> CBool newtype CIntPtr CIntPtr :: Int64 -> CIntPtr newtype CUIntPtr CUIntPtr :: Word64 -> CUIntPtr newtype CIntMax CIntMax :: Int64 -> CIntMax newtype CUIntMax CUIntMax :: Word64 -> CUIntMax -- | Haskell type representing the C clock_t type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CClock CClock :: Int64 -> CClock -- | Haskell type representing the C time_t type. (The concrete -- types of Foreign.C.Types#platform are platform-specific.) newtype CTime CTime :: Int64 -> CTime -- | Haskell type representing the C useconds_t type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CUSeconds CUSeconds :: Word32 -> CUSeconds -- | Haskell type representing the C suseconds_t type. (The -- concrete types of Foreign.C.Types#platform are -- platform-specific.) newtype CSUSeconds CSUSeconds :: Int64 -> CSUSeconds -- | Haskell type representing the C float type. (The concrete -- types of Foreign.C.Types#platform are platform-specific.) newtype CFloat CFloat :: Float -> CFloat -- | Haskell type representing the C double type. (The concrete -- types of Foreign.C.Types#platform are platform-specific.) data CDouble newtype COff COff :: Int64 -> COff newtype CMode CMode :: Word32 -> CMode module Basement.Compat.CallStack -- | Request a CallStack. -- -- NOTE: The implicit parameter ?callStack :: CallStack is an -- implementation detail and should not be considered part of the -- CallStack API, we may decide to change the implementation in -- the future. type HasCallStack = ?callStack :: CallStack -- | Identity re-export, with a compat wrapper for older version of base -- that do not have Data.Functor.Identity module Basement.Compat.Identity -- | Identity functor and monad. (a non-strict monad) newtype Identity a Identity :: a -> Identity a [runIdentity] :: Identity a -> a -- | compat friendly version of IsList module Basement.Compat.IsList -- | The IsList class and its methods are intended to be used in -- conjunction with the OverloadedLists extension. class IsList l where { -- | The Item type function returns the type of items of the -- structure l. type family Item l; } -- | The fromList function constructs the structure l from -- the given list of Item l fromList :: IsList l => [Item l] -> l -- | The fromListN function takes the input list's length as a hint. -- Its behaviour should be equivalent to fromList. The hint can be -- used to construct the structure l more efficiently compared -- to fromList. If the given hint does not equal to the input -- list's length the behaviour of fromListN is not specified. fromListN :: IsList l => Int -> [Item l] -> l -- | The toList function extracts a list of Item l from the -- structure l. It should satisfy fromList . toList = id. toList :: IsList l => l -> [Item l] module Basement.Compat.Natural -- | Type representing arbitrary-precision non-negative integers. -- --
-- >>> 2^100 :: Natural -- 1267650600228229401496703205376 ---- -- Operations whose result would be negative throw -- (Underflow :: ArithException), -- --
-- >>> -1 :: Natural -- *** Exception: arithmetic underflow --data Natural integerToNatural :: Integer -> Natural naturalToInteger :: Natural -> Integer -- | Literal support for Integral and Fractional module Basement.Compat.NumLiteral -- | Integral Literal support -- -- e.g. 123 :: Integer 123 :: Word8 class Integral a fromInteger :: Integral a => Integer -> a -- | Fractional Literal support -- -- e.g. 1.2 :: Double 0.03 :: Float class Fractional a fromRational :: Fractional a => Rational -> a -- | Negation support -- -- e.g. -(f x) class HasNegation a negate :: HasNegation a => a -> a instance Basement.Compat.NumLiteral.HasNegation GHC.Integer.Type.Integer instance Basement.Compat.NumLiteral.HasNegation GHC.Types.Int instance Basement.Compat.NumLiteral.HasNegation GHC.Int.Int8 instance Basement.Compat.NumLiteral.HasNegation GHC.Int.Int16 instance Basement.Compat.NumLiteral.HasNegation GHC.Int.Int32 instance Basement.Compat.NumLiteral.HasNegation GHC.Int.Int64 instance Basement.Compat.NumLiteral.HasNegation GHC.Types.Word instance Basement.Compat.NumLiteral.HasNegation GHC.Word.Word8 instance Basement.Compat.NumLiteral.HasNegation GHC.Word.Word16 instance Basement.Compat.NumLiteral.HasNegation GHC.Word.Word32 instance Basement.Compat.NumLiteral.HasNegation GHC.Word.Word64 instance Basement.Compat.NumLiteral.HasNegation GHC.Types.Float instance Basement.Compat.NumLiteral.HasNegation GHC.Types.Double instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CChar instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CSChar instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CShort instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CInt instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CLong instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CPtrdiff instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CWchar instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CLLong instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CIntMax instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CFloat instance Basement.Compat.NumLiteral.HasNegation Foreign.C.Types.CDouble instance Basement.Compat.NumLiteral.Fractional GHC.Real.Rational instance Basement.Compat.NumLiteral.Fractional GHC.Types.Float instance Basement.Compat.NumLiteral.Fractional GHC.Types.Double instance Basement.Compat.NumLiteral.Fractional Foreign.C.Types.CFloat instance Basement.Compat.NumLiteral.Fractional Foreign.C.Types.CDouble instance Basement.Compat.NumLiteral.Integral GHC.Integer.Type.Integer instance Basement.Compat.NumLiteral.Integral GHC.Natural.Natural instance Basement.Compat.NumLiteral.Integral GHC.Types.Int instance Basement.Compat.NumLiteral.Integral GHC.Types.Word instance Basement.Compat.NumLiteral.Integral GHC.Word.Word8 instance Basement.Compat.NumLiteral.Integral GHC.Word.Word16 instance Basement.Compat.NumLiteral.Integral GHC.Word.Word32 instance Basement.Compat.NumLiteral.Integral GHC.Word.Word64 instance Basement.Compat.NumLiteral.Integral GHC.Int.Int8 instance Basement.Compat.NumLiteral.Integral GHC.Int.Int16 instance Basement.Compat.NumLiteral.Integral GHC.Int.Int32 instance Basement.Compat.NumLiteral.Integral GHC.Int.Int64 instance Basement.Compat.NumLiteral.Integral Foreign.Ptr.IntPtr instance Basement.Compat.NumLiteral.Integral GHC.Types.Float instance Basement.Compat.NumLiteral.Integral GHC.Types.Double instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CChar instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CSChar instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CUChar instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CShort instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CUShort instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CInt instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CUInt instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CLong instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CULong instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CPtrdiff instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CSize instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CWchar instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CSigAtomic instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CLLong instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CULLong instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CBool instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CIntPtr instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CUIntPtr instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CIntMax instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CUIntMax instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CClock instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CTime instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CUSeconds instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CSUSeconds instance Basement.Compat.NumLiteral.Integral System.Posix.Types.COff instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CFloat instance Basement.Compat.NumLiteral.Integral Foreign.C.Types.CDouble module Basement.Compat.PrimTypes -- | File size in bytes type FileSize# = Word64# -- | Offset in a bytearray, string, type alias -- -- for code documentation purpose only, just a simple type alias on Int# type Offset# = Int# -- | CountOf in bytes type alias -- -- for code documentation purpose only, just a simple type alias on Int# type CountOf# = Int# -- | Lowlevel Boolean type Bool# = Int# -- | Pinning status type Pinned# = Bool# module Basement.Compat.Primitive -- | turn an Int# into a Bool bool# :: Int# -> Bool -- | Flag record whether a specific byte array is pinned or not data PinnedStatus Pinned :: PinnedStatus Unpinned :: PinnedStatus toPinnedStatus# :: Pinned# -> PinnedStatus -- | A mkWeak# version that keep working on 8.0 -- -- signature change in ghc-prim: * 0.4: mkWeak RealWorld -> ( -- RealWorld, Weak) * 0.5 :mkWeak RealWorld -> ( RealWorld, c -- RealWorld -> ( RealWorld, Weak) compatMkWeak# :: o -> b -> IO () -> State# RealWorld -> (# State# RealWorld, Weak# b #) compatIsByteArrayPinned# :: ByteArray# -> Pinned# compatIsMutableByteArrayPinned# :: MutableByteArray# s -> Pinned# -- | The function unsafeCoerce# allows you to side-step the -- typechecker entirely. That is, it allows you to coerce any type into -- any other type. If you use this function, you had better get it right, -- otherwise segmentation faults await. It is generally used when you -- want to write a program that you know is well-typed, but where -- Haskell's type system is not expressive enough to prove that it is -- well typed. -- -- The following uses of unsafeCoerce# are supposed to work -- (i.e. not lead to spurious compile-time or run-time crashes): -- --
-- >>> [1,2,3] <> [4,5,6] -- [1,2,3,4,5,6] --(<>) :: Semigroup a => a -> a -> a -- | Reduce a non-empty list with <> -- -- The default definition should be sufficient, but this can be -- overridden for efficiency. -- --
-- >>> import Data.List.NonEmpty -- -- >>> sconcat $ "Hello" :| [" ", "Haskell", "!"] -- "Hello Haskell!" --sconcat :: Semigroup a => NonEmpty a -> a -- | Repeat a value n times. -- -- Given that this works on a Semigroup it is allowed to fail if -- you request 0 or fewer repetitions, and the default definition will do -- so. -- -- By making this a member of the class, idempotent semigroups and -- monoids can upgrade this to execute in <math> by picking -- stimes = stimesIdempotent or stimes = -- stimesIdempotentMonoid respectively. -- --
-- >>> stimes 4 [1] -- [1,1,1,1] --stimes :: (Semigroup a, Integral b) => b -> a -> a infixr 6 <> type ListNonEmpty = NonEmpty -- | conveniently provide support for legacy and modern base module Basement.Compat.Typeable -- | The class Typeable allows a concrete representation of a type -- to be calculated. class Typeable (a :: k) -- | internal re-export of all the good base bits module Basement.Compat.Base -- | Application operator. This operator is redundant, since ordinary -- application (f x) means the same as (f $ x). -- However, $ 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 map -- ($ 0) xs, or zipWith ($) fs xs. -- -- Note that ($) is levity-polymorphic in its result -- type, so that foo $ True where foo :: Bool -> -- Int# is well-typed. ($) :: forall (r :: RuntimeRep) a (b :: TYPE r). (a -> b) -> a -> b infixr 0 $ -- | Strict (call-by-value) application operator. It takes a function and -- an argument, evaluates the argument to weak head normal form (WHNF), -- then calls the function with that value. ($!) :: forall (r :: RuntimeRep) a (b :: TYPE r). (a -> b) -> a -> b infixr 0 $! -- | Boolean "and", lazy in the second argument (&&) :: Bool -> Bool -> Bool infixr 3 && -- | Boolean "or", lazy in the second argument (||) :: Bool -> Bool -> Bool infixr 2 || -- | morphism composition (.) :: forall (b :: k) (c :: k) (a :: k). Category cat => cat b c -> cat a b -> cat a c infixr 9 . -- | 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. -- --
-- >>> show <$> Nothing -- Nothing -- -- >>> show <$> Just 3 -- Just "3" ---- -- Convert from an Either Int Int to an -- Either Int String using show: -- --
-- >>> show <$> Left 17 -- Left 17 -- -- >>> show <$> Right 17 -- Right "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) --(<$>) :: Functor f => (a -> b) -> f a -> f b infixl 4 <$> -- | Boolean "not" not :: Bool -> Bool -- | otherwise is defined as the value True. It helps to make -- guards more readable. eg. -- --
-- f x | x < 0 = ... -- | otherwise = ... --otherwise :: Bool -- | Extract the first component of a pair. fst :: (a, b) -> a -- | Extract the second component of a pair. snd :: (a, b) -> b -- | the identity morphism id :: forall (a :: k). Category cat => cat a a -- | 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. -- --
-- >>> maybe False odd (Just 3) -- True ---- --
-- >>> maybe False odd Nothing -- False ---- -- 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 -- "" --maybe :: b -> (a -> b) -> Maybe a -> b -- | Case analysis for the Either type. If the value is -- Left a, apply the first function to a; if it -- is Right b, apply the second function to b. -- --
-- >>> let s = Left "foo" :: Either String Int -- -- >>> let n = Right 3 :: Either String Int -- -- >>> either length (*2) s -- 3 -- -- >>> either length (*2) n -- 6 --either :: (a -> c) -> (b -> c) -> Either a b -> c -- | flip f takes its (first) two arguments in the reverse -- order of f. -- --
-- >>> flip (++) "hello" "world" -- "worldhello" --flip :: (a -> b -> c) -> b -> a -> c -- | 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] --const :: a -> b -> a -- | error stops execution and displays an error message. error :: forall (r :: RuntimeRep) (a :: TYPE r). HasCallStack => [Char] -> a -- | and returns the conjunction of a container of Bools. For the -- result to be True, the container must be finite; False, -- however, results from a False value finitely far from the left -- end. and :: Foldable t => t Bool -> Bool -- | A special case of error. It is expected that compilers will -- recognize this and insert error messages which are more appropriate to -- the context in which undefined appears. undefined :: forall (r :: RuntimeRep) (a :: TYPE r). HasCallStack => a -- | 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. seq :: forall (r :: RuntimeRep) a (b :: TYPE r). a -> b -> b infixr 0 `seq` -- | Conversion of values to readable Strings. -- -- Derived instances of Show have the following properties, which -- are compatible with derived instances of Read: -- --
-- 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 = 5 ---- -- Note that right-associativity of :^: is ignored. For example, -- --
-- 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. showsPrec :: Show a => Int -> a -> ShowS -- | A specialised variant of showsPrec, using precedence context -- zero, and returning an ordinary String. show :: Show a => a -> String -- | The method showList is provided to allow the programmer to give -- a specialised way of showing lists of values. For example, this is -- used by the predefined Show instance of the Char type, -- where values of type String should be shown in double quotes, -- rather than between square brackets. showList :: Show a => [a] -> ShowS -- | 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: -- --
-- enumFrom x = enumFromTo x maxBound -- enumFromThen x y = enumFromThenTo x y bound -- where -- bound | fromEnum y >= fromEnum x = maxBound -- | otherwise = minBound --class Enum a -- | the successor of a value. For numeric types, succ adds 1. succ :: Enum a => a -> a -- | the predecessor of a value. For numeric types, pred subtracts -- 1. pred :: Enum a => a -> a -- | Convert from an Int. toEnum :: Enum a => Int -> a -- | 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. fromEnum :: Enum a => a -> 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 4 6 :: [Integer] = [4,6,8,10...]
enumFromThen 6 2 :: [Int] = [6,2,-2,-6,...,minBound :: -- Int]
enumFromTo 6 10 :: [Int] = [6,7,8,9,10]
enumFromTo 42 1 :: [Integer] = []
enumFromThenTo 4 2 -6 :: [Integer] = -- [4,2,0,-2,-4,-6]
enumFromThenTo 6 8 2 :: [Int] = []
-- do a <- as -- pure (f a) ---- -- with an inferred Functor constraint. fmap :: Functor f => (a -> b) -> f a -> f b -- | Replace all locations in the input with the same value. The default -- definition is fmap . const, but this may be -- overridden with a more efficient version. -- -- Using ApplicativeDo: 'a <$ bs' can be -- understood as the do expression -- --
-- do bs -- pure a ---- -- with an inferred Functor constraint. (<$) :: Functor f => a -> f b -> f a infixl 4 <$ -- | A functor with application, providing operations to -- --
-- (<*>) = liftA2 id ---- --
-- liftA2 f x y = f <$> x <*> y ---- -- Further, any definition must satisfy the following: -- --
pure id <*> v = -- v
pure (.) <*> u -- <*> v <*> w = u <*> (v -- <*> w)
pure f <*> -- pure x = pure (f x)
u <*> pure y = -- pure ($ y) <*> u
-- forall x y. p (q x y) = f x . g y ---- -- it follows from the above that -- --
-- liftA2 p (liftA2 q u v) = liftA2 f u . liftA2 g v ---- -- If f is also a Monad, it should satisfy -- -- -- -- (which implies that pure and <*> satisfy the -- applicative functor laws). class Functor f => Applicative (f :: Type -> Type) -- | Lift a value. pure :: Applicative f => a -> f a -- | Sequential application. -- -- A few functors support an implementation of <*> that is -- more efficient than the default one. -- -- Using ApplicativeDo: 'fs <*> as' can be -- understood as the do expression -- --
-- do f <- fs -- a <- as -- pure (f a) --(<*>) :: Applicative f => f (a -> b) -> f a -> f b -- | Lift a binary function to actions. -- -- Some functors support an implementation of liftA2 that is more -- efficient than the default one. In particular, if fmap is an -- expensive operation, it is likely better to use liftA2 than to -- fmap over the structure and then use <*>. -- -- This became a typeclass method in 4.10.0.0. Prior to that, it was a -- function defined in terms of <*> and fmap. -- -- Using ApplicativeDo: 'liftA2 f as bs' can be -- understood as the do expression -- --
-- do a <- as -- b <- bs -- pure (f a b) --liftA2 :: Applicative f => (a -> b -> c) -> f a -> f b -> f c -- | Sequence actions, discarding the value of the first argument. -- -- 'as *> bs' can be understood as the do -- expression -- --
-- do as -- bs ---- -- This is a tad complicated for our ApplicativeDo extension -- which will give it a Monad constraint. For an -- Applicative constraint we write it of the form -- --
-- do _ <- as -- b <- bs -- pure b --(*>) :: Applicative f => f a -> f b -> f b -- | Sequence actions, discarding the value of the second argument. -- -- Using ApplicativeDo: 'as <* bs' can be -- understood as the do expression -- --
-- do a <- as -- bs -- pure a --(<*) :: Applicative f => f a -> f b -> f a infixl 4 <*> infixl 4 *> infixl 4 <* -- | 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: -- --
-- do a <- as -- bs a --(>>=) :: Monad m => m a -> (a -> m b) -> m b -- | Sequentially compose two actions, discarding any value produced by the -- first, like sequencing operators (such as the semicolon) in imperative -- languages. -- -- 'as >> bs' can be understood as the do -- expression -- --
-- do as -- bs --(>>) :: Monad m => m a -> m b -> m b -- | Inject a value into the monadic type. return :: Monad m => a -> m a infixl 1 >>= infixl 1 >> -- | Conditional execution of Applicative expressions. For example, -- --
-- when debug (putStrLn "Debugging") ---- -- will output the string Debugging if the Boolean value -- debug is True, and otherwise do nothing. when :: Applicative f => Bool -> f () -> f () -- | The reverse of when. unless :: Applicative f => Bool -> f () -> f () -- | The Maybe type encapsulates an optional value. A value of type -- Maybe a either contains a value of type a -- (represented as Just a), or it is empty (represented -- as Nothing). 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. data Maybe a Nothing :: Maybe a Just :: a -> Maybe a data Ordering LT :: Ordering EQ :: Ordering GT :: Ordering data Bool False :: Bool True :: Bool -- | 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. data Int -- | Arbitrary precision integers. In contrast with fixed-size integral -- types such as Int, the Integer type represents the -- entire infinite range of integers. -- -- For more information about this type's representation, see the -- comments in its implementation. data Integer -- | 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). data Char -- | Integral Literal support -- -- e.g. 123 :: Integer 123 :: Word8 class Integral a fromInteger :: Integral a => Integer -> a -- | Fractional Literal support -- -- e.g. 1.2 :: Double 0.03 :: Float class Fractional a fromRational :: Fractional a => Rational -> a -- | Negation support -- -- e.g. -(f x) class HasNegation a negate :: HasNegation a => a -> a -- | 8-bit signed integer type data Int8 -- | 16-bit signed integer type data Int16 -- | 32-bit signed integer type data Int32 -- | 64-bit signed integer type data Int64 -- | 8-bit unsigned integer type data Word8 -- | 16-bit unsigned integer type data Word16 -- | 32-bit unsigned integer type data Word32 -- | 64-bit unsigned integer type data Word64 -- | A Word is an unsigned integral type, with the same size as -- Int. data Word -- | 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. data Double -- | 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. data Float -- | A value of type IO a is a computation which, when -- performed, does some I/O before returning a value of type a. -- -- 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. data IO a -- | The IsList class and its methods are intended to be used in -- conjunction with the OverloadedLists extension. class IsList l where { -- | The Item type function returns the type of items of the -- structure l. type family Item l; } -- | The fromList function constructs the structure l from -- the given list of Item l fromList :: IsList l => [Item l] -> l -- | The fromListN function takes the input list's length as a hint. -- Its behaviour should be equivalent to fromList. The hint can be -- used to construct the structure l more efficiently compared -- to fromList. If the given hint does not equal to the input -- list's length the behaviour of fromListN is not specified. fromListN :: IsList l => Int -> [Item l] -> l -- | The toList function extracts a list of Item l from the -- structure l. It should satisfy fromList . toList = id. toList :: IsList l => l -> [Item l] -- | Class for string-like datastructures; used by the overloaded string -- extension (-XOverloadedStrings in GHC). class IsString a fromString :: IsString a => String -> a -- | Representable types of kind *. This class is derivable in GHC -- with the DeriveGeneric flag on. -- -- A Generic instance must satisfy the following laws: -- --
-- from . to ≡ id -- to . from ≡ id --class Generic a -- | The Either type represents values with two possibilities: a -- value of type Either a b is either Left -- a or 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"). -- --
-- >>> let s = Left "foo" :: Either String Int -- -- >>> s -- Left "foo" -- -- >>> let n = Right 3 :: Either String Int -- -- >>> n -- Right 3 -- -- >>> :type s -- s :: Either String Int -- -- >>> :type n -- n :: 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) s -- Left "foo" -- -- >>> fmap (*2) n -- Right 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)
--
-- >>> :}
--
--
-- -- >>> parseMultiple -- Right 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)
--
-- >>> :}
--
--
-- -- >>> parseMultiple -- Left "parse error" --data Either a b Left :: a -> Either a b Right :: b -> Either a b -- | The Data class comprehends a fundamental primitive -- gfoldl for folding over constructor applications, say terms. -- This primitive can be instantiated in several ways to map over the -- immediate subterms of a term; see the gmap combinators later -- in this class. Indeed, a generic programmer does not necessarily need -- to use the ingenious gfoldl primitive but rather the intuitive -- gmap combinators. The gfoldl primitive is completed by -- means to query top-level constructors, to turn constructor -- representations into proper terms, and to list all possible datatype -- constructors. This completion allows us to serve generic programming -- scenarios like read, show, equality, term generation. -- -- The combinators gmapT, gmapQ, gmapM, etc are all -- provided with default definitions in terms of gfoldl, leaving -- open the opportunity to provide datatype-specific definitions. (The -- inclusion of the gmap combinators as members of class -- Data allows the programmer or the compiler to derive -- specialised, and maybe more efficient code per datatype. Note: -- gfoldl is more higher-order than the gmap combinators. -- This is subject to ongoing benchmarking experiments. It might turn out -- that the gmap combinators will be moved out of the class -- Data.) -- -- Conceptually, the definition of the gmap combinators in terms -- of the primitive gfoldl requires the identification of the -- gfoldl function arguments. Technically, we also need to -- identify the type constructor c for the construction of the -- result type from the folded term type. -- -- In the definition of gmapQx combinators, we use -- phantom type constructors for the c in the type of -- gfoldl because the result type of a query does not involve the -- (polymorphic) type of the term argument. In the definition of -- gmapQl we simply use the plain constant type constructor -- because gfoldl is left-associative anyway and so it is readily -- suited to fold a left-associative binary operation over the immediate -- subterms. In the definition of gmapQr, extra effort is needed. We use -- a higher-order accumulation trick to mediate between left-associative -- constructor application vs. right-associative binary operation (e.g., -- (:)). When the query is meant to compute a value of type -- r, then the result type withing generic folding is r -- -> r. So the result of folding is a function to which we -- finally pass the right unit. -- -- With the -XDeriveDataTypeable option, GHC can generate -- instances of the Data class automatically. For example, given -- the declaration -- --
-- data T a b = C1 a b | C2 deriving (Typeable, Data) ---- -- GHC will generate an instance that is equivalent to -- --
-- instance (Data a, Data b) => Data (T a b) where -- gfoldl k z (C1 a b) = z C1 `k` a `k` b -- gfoldl k z C2 = z C2 -- -- gunfold k z c = case constrIndex c of -- 1 -> k (k (z C1)) -- 2 -> z C2 -- -- toConstr (C1 _ _) = con_C1 -- toConstr C2 = con_C2 -- -- dataTypeOf _ = ty_T -- -- con_C1 = mkConstr ty_T "C1" [] Prefix -- con_C2 = mkConstr ty_T "C2" [] Prefix -- ty_T = mkDataType "Module.T" [con_C1, con_C2] ---- -- This is suitable for datatypes that are exported transparently. class Typeable a => Data a -- | Left-associative fold operation for constructor applications. -- -- The type of gfoldl is a headache, but operationally it is a -- simple generalisation of a list fold. -- -- The default definition for gfoldl is const -- id, which is suitable for abstract datatypes with no -- substructures. gfoldl :: Data a => (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. () => g -> c g) -> a -> c a -- | Unfolding constructor applications gunfold :: Data a => (forall b r. Data b => c (b -> r) -> c r) -> (forall r. () => r -> c r) -> Constr -> c a -- | Obtaining the constructor from a given datum. For proper terms, this -- is meant to be the top-level constructor. Primitive datatypes are here -- viewed as potentially infinite sets of values (i.e., constructors). toConstr :: Data a => a -> Constr -- | The outer type constructor of the type dataTypeOf :: Data a => a -> DataType -- | Mediate types and unary type constructors. -- -- In Data instances of the form -- --
-- instance (Data a, ...) => Data (T a) ---- -- dataCast1 should be defined as gcast1. -- -- The default definition is const Nothing, which -- is appropriate for instances of other forms. dataCast1 :: (Data a, Typeable t) => (forall d. Data d => c (t d)) -> Maybe (c a) -- | Mediate types and binary type constructors. -- -- In Data instances of the form -- --
-- instance (Data a, Data b, ...) => Data (T a b) ---- -- dataCast2 should be defined as gcast2. -- -- The default definition is const Nothing, which -- is appropriate for instances of other forms. dataCast2 :: (Data a, Typeable t) => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c a) -- | A generic transformation that maps over the immediate subterms -- -- The default definition instantiates the type constructor c in -- the type of gfoldl to an identity datatype constructor, using -- the isomorphism pair as injection and projection. gmapT :: Data a => (forall b. Data b => b -> b) -> a -> a -- | A generic query with a left-associative binary operator gmapQl :: Data a => (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> a -> r -- | A generic query with a right-associative binary operator gmapQr :: forall r r'. Data a => (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> a -> r -- | A generic query that processes the immediate subterms and returns a -- list of results. The list is given in the same order as originally -- specified in the declaration of the data constructors. gmapQ :: Data a => (forall d. Data d => d -> u) -> a -> [u] -- | A generic query that processes one child by index (zero-based) gmapQi :: Data a => Int -> (forall d. Data d => d -> u) -> a -> u -- | A generic monadic transformation that maps over the immediate subterms -- -- The default definition instantiates the type constructor c in -- the type of gfoldl to the monad datatype constructor, defining -- injection and projection using return and >>=. gmapM :: (Data a, Monad m) => (forall d. Data d => d -> m d) -> a -> m a -- | Transformation of at least one immediate subterm does not fail gmapMp :: (Data a, MonadPlus m) => (forall d. Data d => d -> m d) -> a -> m a -- | Transformation of one immediate subterm with success gmapMo :: (Data a, MonadPlus m) => (forall d. Data d => d -> m d) -> a -> m a -- | Constructs a non-representation for a non-representable type mkNoRepType :: String -> DataType -- | Representation of datatypes. A package of constructor representations -- with names of type and module. data DataType -- | The class Typeable allows a concrete representation of a type -- to be calculated. class Typeable (a :: k) -- | The class of monoids (types with an associative binary operation that -- has an identity). Instances should satisfy the following: -- --
-- >>> "Hello world" <> mempty -- "Hello world" --mempty :: Monoid a => a -- | An associative operation -- -- NOTE: This method is redundant and has the default -- implementation mappend = (<>) since -- base-4.11.0.0. Should it be implemented manually, since -- mappend is a synonym for (<>), it is expected that -- the two functions are defined the same way. In a future GHC release -- mappend will be removed from Monoid. mappend :: Monoid a => a -> a -> a -- | Fold a list using the monoid. -- -- For most types, the default definition for mconcat will be -- used, but the function is included in the class definition so that an -- optimized version can be provided for specific types. -- --
-- >>> mconcat ["Hello", " ", "Haskell", "!"] -- "Hello Haskell!" --mconcat :: Monoid a => [a] -> a -- | An associative operation. -- --
-- >>> [1,2,3] <> [4,5,6] -- [1,2,3,4,5,6] --(<>) :: Semigroup a => a -> a -> a infixr 6 <> -- | Any type that you wish to throw or catch as an exception must be an -- instance of the Exception class. The simplest case is a new -- exception type directly below the root: -- --
-- data MyException = ThisException | ThatException -- deriving Show -- -- instance Exception MyException ---- -- The default method definitions in the Exception class do what -- we need in this case. You can now throw and catch -- ThisException and ThatException as exceptions: -- --
-- *Main> throw ThisException `catch` \e -> putStrLn ("Caught " ++ show (e :: MyException))
-- Caught ThisException
--
--
-- In more complicated examples, you may wish to define a whole hierarchy
-- of exceptions:
--
-- -- --------------------------------------------------------------------- -- -- Make the root exception type for all the exceptions in a compiler -- -- data SomeCompilerException = forall e . Exception e => SomeCompilerException e -- -- instance Show SomeCompilerException where -- show (SomeCompilerException e) = show e -- -- instance Exception SomeCompilerException -- -- compilerExceptionToException :: Exception e => e -> SomeException -- compilerExceptionToException = toException . SomeCompilerException -- -- compilerExceptionFromException :: Exception e => SomeException -> Maybe e -- compilerExceptionFromException x = do -- SomeCompilerException a <- fromException x -- cast a -- -- --------------------------------------------------------------------- -- -- Make a subhierarchy for exceptions in the frontend of the compiler -- -- data SomeFrontendException = forall e . Exception e => SomeFrontendException e -- -- instance Show SomeFrontendException where -- show (SomeFrontendException e) = show e -- -- instance Exception SomeFrontendException where -- toException = compilerExceptionToException -- fromException = compilerExceptionFromException -- -- frontendExceptionToException :: Exception e => e -> SomeException -- frontendExceptionToException = toException . SomeFrontendException -- -- frontendExceptionFromException :: Exception e => SomeException -> Maybe e -- frontendExceptionFromException x = do -- SomeFrontendException a <- fromException x -- cast a -- -- --------------------------------------------------------------------- -- -- Make an exception type for a particular frontend compiler exception -- -- data MismatchedParentheses = MismatchedParentheses -- deriving Show -- -- instance Exception MismatchedParentheses where -- toException = frontendExceptionToException -- fromException = frontendExceptionFromException ---- -- We can now catch a MismatchedParentheses exception as -- MismatchedParentheses, SomeFrontendException or -- SomeCompilerException, but not other types, e.g. -- IOException: -- --
-- *Main> throw MismatchedParentheses `catch` \e -> putStrLn ("Caught " ++ show (e :: MismatchedParentheses))
-- Caught MismatchedParentheses
-- *Main> throw MismatchedParentheses `catch` \e -> putStrLn ("Caught " ++ show (e :: SomeFrontendException))
-- Caught MismatchedParentheses
-- *Main> throw MismatchedParentheses `catch` \e -> putStrLn ("Caught " ++ show (e :: SomeCompilerException))
-- Caught MismatchedParentheses
-- *Main> throw MismatchedParentheses `catch` \e -> putStrLn ("Caught " ++ show (e :: IOException))
-- *** Exception: MismatchedParentheses
--
class (Typeable e, Show e) => Exception e
-- | Throw an exception. Exceptions may be thrown from purely functional
-- code, but may only be caught within the IO monad.
throw :: forall (r :: RuntimeRep) (a :: TYPE r) e. Exception e => e -> a
-- | A variant of throw that can only be used within the IO
-- monad.
--
-- Although throwIO has a type that is an instance of the type of
-- throw, the two functions are subtly different:
--
-- -- throw e `seq` x ===> throw e -- throwIO e `seq` x ===> x ---- -- The first example will cause the exception e to be raised, -- whereas the second one won't. In fact, throwIO will only cause -- an exception to be raised when it is used within the IO monad. -- The throwIO variant should be used in preference to -- throw to raise an exception within the IO monad because -- it guarantees ordering with respect to other IO operations, -- whereas throw does not. throwIO :: Exception e => e -> IO a -- | A value of type Ptr a represents a pointer to an -- object, or an array of objects, which may be marshalled to or from -- Haskell values of type a. -- -- The type a will often be an instance of class Storable -- which provides the marshalling operations. However this is not -- essential, and you can provide your own operations to access the -- pointer. For example you might write small foreign functions to get or -- set the fields of a C struct. data Ptr a Ptr :: Addr# -> Ptr a -- | for support of if .. then .. else ifThenElse :: Bool -> a -> a -> a -- | Only to use internally for internal error cases internalError :: [Char] -> a -- | An internal and really simple monad transformers, without any bells -- and whistse. module Basement.Compat.MonadTrans -- | Simple State monad newtype State s m a State :: (s -> m (a, s)) -> State s m a [runState] :: State s m a -> s -> m (a, s) -- | Simple Reader monad newtype Reader r m a Reader :: (r -> m a) -> Reader r m a [runReader] :: Reader r m a -> r -> m a instance GHC.Base.Monad m => GHC.Base.Functor (Basement.Compat.MonadTrans.Reader r m) instance GHC.Base.Monad m => GHC.Base.Applicative (Basement.Compat.MonadTrans.Reader r m) instance GHC.Base.Monad m => GHC.Base.Monad (Basement.Compat.MonadTrans.Reader r m) instance GHC.Base.Monad m => GHC.Base.Functor (Basement.Compat.MonadTrans.State s m) instance GHC.Base.Monad m => GHC.Base.Applicative (Basement.Compat.MonadTrans.State s m) instance GHC.Base.Monad m => GHC.Base.Monad (Basement.Compat.MonadTrans.State r m) module Basement.Compat.AMP -- | Deprecated: use Monad type AMPMonad m = Monad m -- | Set endianness tag to a given primitive. This will help for -- serialising data for protocols (such as the network protocols). module Basement.Endianness -- | Class of types that can be byte-swapped. -- -- e.g. Word16, Word32, Word64 class ByteSwap a -- | Big Endian value newtype BE a BE :: a -> BE a [unBE] :: BE a -> a -- | Convert a value in cpu endianess to big endian toBE :: ByteSwap a => a -> BE a -- | Convert from a big endian value to the cpu endianness fromBE :: ByteSwap a => BE a -> a -- | Little Endian value newtype LE a LE :: a -> LE a [unLE] :: LE a -> a -- | Convert a value in cpu endianess to little endian toLE :: ByteSwap a => a -> LE a -- | Convert from a little endian value to the cpu endianness fromLE :: ByteSwap a => LE a -> a data Endianness LittleEndian :: Endianness BigEndian :: Endianness -- | endianness of the current architecture endianness :: Endianness instance GHC.Show.Show Basement.Endianness.Endianness instance GHC.Classes.Eq Basement.Endianness.Endianness instance Data.Bits.Bits a => Data.Bits.Bits (Basement.Endianness.LE a) instance GHC.Classes.Eq a => GHC.Classes.Eq (Basement.Endianness.LE a) instance GHC.Show.Show a => GHC.Show.Show (Basement.Endianness.LE a) instance Data.Bits.Bits a => Data.Bits.Bits (Basement.Endianness.BE a) instance GHC.Classes.Eq a => GHC.Classes.Eq (Basement.Endianness.BE a) instance GHC.Show.Show a => GHC.Show.Show (Basement.Endianness.BE a) instance (Basement.Endianness.ByteSwap a, GHC.Classes.Ord a) => GHC.Classes.Ord (Basement.Endianness.LE a) instance (Basement.Endianness.ByteSwap a, GHC.Classes.Ord a) => GHC.Classes.Ord (Basement.Endianness.BE a) instance Basement.Endianness.ByteSwap GHC.Word.Word16 instance Basement.Endianness.ByteSwap GHC.Word.Word32 instance Basement.Endianness.ByteSwap GHC.Word.Word64 module Basement.Floating integerToDouble :: Integer -> Double naturalToDouble :: Natural -> Double doubleExponant :: Double -> Int -> Double integerToFloat :: Integer -> Float naturalToFloat :: Natural -> Float wordToFloat :: Word32 -> Float floatToWord :: Float -> Word32 wordToDouble :: Word64 -> Double doubleToWord :: Double -> Word64 -- | Allow to run operation in ST and IO, without having to distinguinsh -- between the two. Most operations exposes the bare nuts and bolts of -- how IO and ST actually works, and relatively easy to shoot yourself in -- the foot -- -- this is highly similar to the Control.Monad.Primitive in the primitive -- package module Basement.Monad -- | Primitive monad that can handle mutation. -- -- For example: IO and ST. class (Functor m, Applicative m, Monad m) => PrimMonad m where { -- | type of state token associated with the PrimMonad m type family PrimState m; -- | type of variable associated with the PrimMonad m type family PrimVar m :: * -> *; } -- | Unwrap the State# token to pass to a function a primitive function -- that returns an unboxed state and a value. primitive :: PrimMonad m => (State# (PrimState m) -> (# State# (PrimState m), a #)) -> m a -- | Throw Exception in the primitive monad primThrow :: (PrimMonad m, Exception e) => e -> m a -- | Run a Prim monad from a dedicated state# unPrimMonad :: PrimMonad m => m a -> State# (PrimState m) -> (# State# (PrimState m), a #) -- | Build a new variable in the Prim Monad primVarNew :: PrimMonad m => a -> m (PrimVar m a) -- | Read the variable in the Prim Monad primVarRead :: PrimMonad m => PrimVar m a -> m a -- | Write the variable in the Prim Monad primVarWrite :: PrimMonad m => PrimVar m a -> a -> m () -- | Monad that can represent failure -- -- Similar to MonadFail but with a parametrized Failure linked to the -- Monad class Monad m => MonadFailure m where { -- | The associated type with the MonadFailure, representing what failure -- can be encoded in this monad type family Failure m; } -- | Raise a Failure through a monad. mFail :: MonadFailure m => Failure m -> m () -- | just like unwrapPrimMonad but throw away the result and -- return just the new State# unPrimMonad_ :: PrimMonad m => m () -> State# (PrimState m) -> State# (PrimState m) -- | Convert a prim monad to another prim monad. -- -- The net effect is that it coerce the state repr to another, so the -- runtime representation should be the same, otherwise hilary ensues. unsafePrimCast :: (PrimMonad m1, PrimMonad m2) => m1 a -> m2 a -- | Convert any prim monad to an ST monad unsafePrimToST :: PrimMonad prim => prim a -> ST s a -- | Convert any prim monad to an IO monad unsafePrimToIO :: PrimMonad prim => prim a -> IO a -- | Convert any IO monad to a prim monad unsafePrimFromIO :: PrimMonad prim => IO a -> prim a -- | Touch primitive lifted to any prim monad primTouch :: PrimMonad m => a -> m () instance Basement.Monad.MonadFailure GHC.Maybe.Maybe instance Basement.Monad.MonadFailure (Data.Either.Either a) instance Basement.Monad.PrimMonad GHC.Types.IO instance Basement.Monad.PrimMonad (GHC.ST.ST s) -- | A smaller ForeignPtr reimplementation that work in any prim monad. -- -- Here be dragon. module Basement.FinalPtr -- | Create a pointer with an associated finalizer data FinalPtr a FinalPtr :: Ptr a -> FinalPtr a FinalForeign :: ForeignPtr a -> FinalPtr a -- | Check if 2 final ptr points on the same memory bits -- -- it stand to reason that provided a final ptr that is still being -- referenced and thus have the memory still valid, if 2 final ptrs have -- the same address, they should be the same final ptr finalPtrSameMemory :: FinalPtr a -> FinalPtr b -> Bool -- | Cast a finalized pointer from type a to type b castFinalPtr :: FinalPtr a -> FinalPtr b -- | create a new FinalPtr from a Pointer toFinalPtr :: PrimMonad prim => Ptr a -> (Ptr a -> IO ()) -> prim (FinalPtr a) -- | Create a new FinalPtr from a ForeignPtr toFinalPtrForeign :: ForeignPtr a -> FinalPtr a touchFinalPtr :: PrimMonad prim => FinalPtr p -> prim () -- | Looks at the raw pointer inside a FinalPtr, making sure the data -- pointed by the pointer is not finalized during the call to f withFinalPtr :: PrimMonad prim => FinalPtr p -> (Ptr p -> prim a) -> prim a -- | Unsafe version of withFinalPtr withUnsafeFinalPtr :: PrimMonad prim => FinalPtr p -> (Ptr p -> prim a) -> a withFinalPtrNoTouch :: FinalPtr p -> (Ptr p -> a) -> a instance GHC.Show.Show (Basement.FinalPtr.FinalPtr a) instance GHC.Classes.Eq (Basement.FinalPtr.FinalPtr a) instance GHC.Classes.Ord (Basement.FinalPtr.FinalPtr a) module Basement.Numerical.Number -- | Number literals, convertible through the generic Integer type. -- -- all number are Enum'erable, meaning that you can move to next element class (Integral a, Eq a, Ord a) => IsIntegral a toInteger :: IsIntegral a => a -> Integer -- | Non Negative Number literals, convertible through the generic Natural -- type class IsIntegral a => IsNatural a toNatural :: IsNatural a => a -> Natural instance Basement.Numerical.Number.IsNatural GHC.Natural.Natural instance Basement.Numerical.Number.IsNatural GHC.Types.Word instance Basement.Numerical.Number.IsNatural GHC.Word.Word8 instance Basement.Numerical.Number.IsNatural GHC.Word.Word16 instance Basement.Numerical.Number.IsNatural GHC.Word.Word32 instance Basement.Numerical.Number.IsNatural GHC.Word.Word64 instance Basement.Numerical.Number.IsNatural Foreign.C.Types.CUChar instance Basement.Numerical.Number.IsNatural Foreign.C.Types.CUShort instance Basement.Numerical.Number.IsNatural Foreign.C.Types.CUInt instance Basement.Numerical.Number.IsNatural Foreign.C.Types.CULong instance Basement.Numerical.Number.IsNatural Foreign.C.Types.CSize instance Basement.Numerical.Number.IsNatural Foreign.C.Types.CULLong instance Basement.Numerical.Number.IsNatural Foreign.C.Types.CUIntPtr instance Basement.Numerical.Number.IsNatural Foreign.C.Types.CUIntMax instance Basement.Numerical.Number.IsIntegral GHC.Integer.Type.Integer instance Basement.Numerical.Number.IsIntegral GHC.Types.Int instance Basement.Numerical.Number.IsIntegral GHC.Int.Int8 instance Basement.Numerical.Number.IsIntegral GHC.Int.Int16 instance Basement.Numerical.Number.IsIntegral GHC.Int.Int32 instance Basement.Numerical.Number.IsIntegral GHC.Int.Int64 instance Basement.Numerical.Number.IsIntegral GHC.Natural.Natural instance Basement.Numerical.Number.IsIntegral GHC.Types.Word instance Basement.Numerical.Number.IsIntegral GHC.Word.Word8 instance Basement.Numerical.Number.IsIntegral GHC.Word.Word16 instance Basement.Numerical.Number.IsIntegral GHC.Word.Word32 instance Basement.Numerical.Number.IsIntegral GHC.Word.Word64 instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CChar instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CSChar instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CUChar instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CShort instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CUShort instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CInt instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CUInt instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CLong instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CULong instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CPtrdiff instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CSize instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CWchar instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CSigAtomic instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CLLong instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CULLong instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CBool instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CIntPtr instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CUIntPtr instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CIntMax instance Basement.Numerical.Number.IsIntegral Foreign.C.Types.CUIntMax module Basement.IntegralConv -- | Downsize an integral value class IntegralDownsize a b integralDownsize :: IntegralDownsize a b => a -> b integralDownsize :: (IntegralDownsize a b, a ~ b) => a -> b integralDownsizeCheck :: IntegralDownsize a b => a -> Maybe b -- | Upsize an integral value -- -- The destination type b size need to be greater or equal than -- the size type of a class IntegralUpsize a b integralUpsize :: IntegralUpsize a b => a -> b intToInt64 :: Int -> Int64 int64ToInt :: Int64 -> Int wordToWord64 :: Word -> Word64 word64ToWord32s :: Word64 -> Word32x2 -- | 2 Word32s data Word32x2 Word32x2 :: {-# UNPACK #-} !Word32 -> {-# UNPACK #-} !Word32 -> Word32x2 word64ToWord :: Word64 -> Word wordToChar :: Word -> Char wordToInt :: Word -> Int charToInt :: Char -> Int instance Basement.Numerical.Number.IsIntegral a => Basement.IntegralConv.IntegralUpsize a GHC.Integer.Type.Integer instance Basement.Numerical.Number.IsNatural a => Basement.IntegralConv.IntegralUpsize a GHC.Natural.Natural instance Basement.IntegralConv.IntegralUpsize GHC.Int.Int8 GHC.Int.Int16 instance Basement.IntegralConv.IntegralUpsize GHC.Int.Int8 GHC.Int.Int32 instance Basement.IntegralConv.IntegralUpsize GHC.Int.Int8 GHC.Int.Int64 instance Basement.IntegralConv.IntegralUpsize GHC.Int.Int8 GHC.Types.Int instance Basement.IntegralConv.IntegralUpsize GHC.Int.Int16 GHC.Int.Int32 instance Basement.IntegralConv.IntegralUpsize GHC.Int.Int16 GHC.Int.Int64 instance Basement.IntegralConv.IntegralUpsize GHC.Int.Int16 GHC.Types.Int instance Basement.IntegralConv.IntegralUpsize GHC.Int.Int32 GHC.Int.Int64 instance Basement.IntegralConv.IntegralUpsize GHC.Int.Int32 GHC.Types.Int instance Basement.IntegralConv.IntegralUpsize GHC.Types.Int GHC.Int.Int64 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word8 GHC.Word.Word16 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word8 GHC.Word.Word32 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word8 GHC.Word.Word64 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word8 GHC.Types.Word instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word8 GHC.Int.Int16 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word8 GHC.Int.Int32 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word8 GHC.Int.Int64 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word8 GHC.Types.Int instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word16 GHC.Word.Word32 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word16 GHC.Word.Word64 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word16 GHC.Types.Word instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word32 GHC.Word.Word64 instance Basement.IntegralConv.IntegralUpsize GHC.Word.Word32 GHC.Types.Word instance Basement.IntegralConv.IntegralUpsize GHC.Types.Word GHC.Word.Word64 instance Basement.IntegralConv.IntegralDownsize GHC.Types.Int GHC.Int.Int8 instance Basement.IntegralConv.IntegralDownsize GHC.Types.Int GHC.Int.Int16 instance Basement.IntegralConv.IntegralDownsize GHC.Types.Int GHC.Int.Int32 instance Basement.IntegralConv.IntegralDownsize GHC.Int.Int64 GHC.Int.Int8 instance Basement.IntegralConv.IntegralDownsize GHC.Int.Int64 GHC.Int.Int16 instance Basement.IntegralConv.IntegralDownsize GHC.Int.Int64 GHC.Int.Int32 instance Basement.IntegralConv.IntegralDownsize GHC.Int.Int64 GHC.Types.Int instance Basement.IntegralConv.IntegralDownsize GHC.Word.Word64 GHC.Word.Word8 instance Basement.IntegralConv.IntegralDownsize GHC.Word.Word64 GHC.Word.Word16 instance Basement.IntegralConv.IntegralDownsize GHC.Word.Word64 GHC.Word.Word32 instance Basement.IntegralConv.IntegralDownsize GHC.Types.Word GHC.Word.Word8 instance Basement.IntegralConv.IntegralDownsize GHC.Types.Word GHC.Word.Word16 instance Basement.IntegralConv.IntegralDownsize GHC.Types.Word GHC.Word.Word32 instance Basement.IntegralConv.IntegralDownsize GHC.Word.Word32 GHC.Word.Word8 instance Basement.IntegralConv.IntegralDownsize GHC.Word.Word32 GHC.Word.Word16 instance Basement.IntegralConv.IntegralDownsize GHC.Word.Word16 GHC.Word.Word8 instance Basement.IntegralConv.IntegralDownsize GHC.Integer.Type.Integer GHC.Int.Int8 instance Basement.IntegralConv.IntegralDownsize GHC.Integer.Type.Integer GHC.Int.Int16 instance Basement.IntegralConv.IntegralDownsize GHC.Integer.Type.Integer GHC.Int.Int32 instance Basement.IntegralConv.IntegralDownsize GHC.Integer.Type.Integer GHC.Int.Int64 instance Basement.IntegralConv.IntegralDownsize GHC.Integer.Type.Integer GHC.Word.Word8 instance Basement.IntegralConv.IntegralDownsize GHC.Integer.Type.Integer GHC.Word.Word16 instance Basement.IntegralConv.IntegralDownsize GHC.Integer.Type.Integer GHC.Word.Word32 instance Basement.IntegralConv.IntegralDownsize GHC.Integer.Type.Integer GHC.Word.Word64 instance Basement.IntegralConv.IntegralDownsize GHC.Integer.Type.Integer GHC.Natural.Natural instance Basement.IntegralConv.IntegralDownsize GHC.Natural.Natural GHC.Word.Word8 instance Basement.IntegralConv.IntegralDownsize GHC.Natural.Natural GHC.Word.Word16 instance Basement.IntegralConv.IntegralDownsize GHC.Natural.Natural GHC.Word.Word32 instance Basement.IntegralConv.IntegralDownsize GHC.Natural.Natural GHC.Word.Word64 module Basement.Types.Char7 -- | ASCII value between 0x0 and 0x7f newtype Char7 Char7 :: Word8 -> Char7 [toByte] :: Char7 -> Word8 -- | Convert a Char7 to a unicode code point Char toChar :: Char7 -> Char -- | Convert a Char to a Char7 ignoring all higher bits fromCharMask :: Char -> Char7 -- | Try to convert a Char to a Char7 -- -- If the code point is non ascii, then Nothing is returned. fromChar :: Char -> Maybe Char7 -- | Convert a Byte to a Char7 ignoring the higher bit fromByteMask :: Word8 -> Char7 -- | Try to convert Word8 to a Char7 -- -- If the byte got higher bit set, then Nothing is returned. fromByte :: Word8 -> Maybe Char7 c7_LF :: Char7 c7_CR :: Char7 c7_minus :: Char7 c7_a :: Char7 c7_A :: Char7 c7_z :: Char7 c7_Z :: Char7 c7_0 :: Char7 c7_1 :: Char7 c7_2 :: Char7 c7_3 :: Char7 c7_4 :: Char7 c7_5 :: Char7 c7_6 :: Char7 c7_7 :: Char7 c7_8 :: Char7 c7_9 :: Char7 c7Upper :: Char7 -> Char7 c7Lower :: Char7 -> Char7 instance GHC.Classes.Ord Basement.Types.Char7.Char7 instance GHC.Classes.Eq Basement.Types.Char7.Char7 instance GHC.Show.Show Basement.Types.Char7.Char7 module Basement.Base16 -- | Convert a byte value in Words containing the hexadecimal -- representation of the Word# -- -- The output words# are guaranteed to be included in the 0 to 2^7-1 -- range -- -- Note that calling convertByte with a value greater than 256 will cause -- segfault or other horrible effect. From GHC9.2, Word8# cannot be >= -- 256. unsafeConvertByte :: Word8# -> (# Word8#, Word8# #) -- | hex word16 hexWord16 :: Word16 -> (Char, Char, Char, Char) -- | hex word32 hexWord32 :: Word32 -> (Char, Char, Char, Char, Char, Char, Char, Char) escapeByte :: Word8 -> Base16Escape data Base16Escape Base16Escape :: {-# UNPACK #-} !Char7 -> {-# UNPACK #-} !Char7 -> Base16Escape module Basement.Types.Word128 -- | 128 bits Word data Word128 Word128 :: {-# UNPACK #-} !Word64 -> {-# UNPACK #-} !Word64 -> Word128 -- | Add 2 Word128 (+) :: Word128 -> Word128 -> Word128 -- | Subtract 2 Word128 (-) :: Word128 -> Word128 -> Word128 -- | Multiplication (*) :: Word128 -> Word128 -> Word128 -- | Division quot :: Word128 -> Word128 -> Word128 -- | Modulo rem :: Word128 -> Word128 -> Word128 -- | Bitwise and bitwiseAnd :: Word128 -> Word128 -> Word128 -- | Bitwise or bitwiseOr :: Word128 -> Word128 -> Word128 -- | Bitwise xor bitwiseXor :: Word128 -> Word128 -> Word128 -- | Bitwise complement complement :: Word128 -> Word128 -- | Bitwise Shift Left shiftL :: Word128 -> Int -> Word128 -- | Bitwise Shift Right shiftR :: Word128 -> Int -> Word128 -- | Bitwise rotate Left rotateL :: Word128 -> Int -> Word128 -- | Bitwise rotate Left rotateR :: Word128 -> Int -> Word128 -- | Population count popCount :: Word128 -> Int fromNatural :: Natural -> Word128 instance GHC.Classes.Eq Basement.Types.Word128.Word128 instance GHC.Show.Show Basement.Types.Word128.Word128 instance GHC.Enum.Enum Basement.Types.Word128.Word128 instance GHC.Enum.Bounded Basement.Types.Word128.Word128 instance GHC.Classes.Ord Basement.Types.Word128.Word128 instance Foreign.Storable.Storable Basement.Types.Word128.Word128 instance Basement.Compat.NumLiteral.Integral Basement.Types.Word128.Word128 instance Basement.Compat.NumLiteral.HasNegation Basement.Types.Word128.Word128 instance Basement.Numerical.Number.IsIntegral Basement.Types.Word128.Word128 instance Basement.Numerical.Number.IsNatural Basement.Types.Word128.Word128 instance GHC.Num.Num Basement.Types.Word128.Word128 instance Data.Bits.Bits Basement.Types.Word128.Word128 module Basement.Types.Word256 -- | 256 bits Word data Word256 Word256 :: {-# UNPACK #-} !Word64 -> {-# UNPACK #-} !Word64 -> {-# UNPACK #-} !Word64 -> {-# UNPACK #-} !Word64 -> Word256 -- | Add 2 Word256 (+) :: Word256 -> Word256 -> Word256 -- | Subtract 2 Word256 (-) :: Word256 -> Word256 -> Word256 -- | Multiplication (*) :: Word256 -> Word256 -> Word256 -- | Division quot :: Word256 -> Word256 -> Word256 -- | Modulo rem :: Word256 -> Word256 -> Word256 -- | Bitwise and bitwiseAnd :: Word256 -> Word256 -> Word256 -- | Bitwise or bitwiseOr :: Word256 -> Word256 -> Word256 -- | Bitwise xor bitwiseXor :: Word256 -> Word256 -> Word256 -- | Bitwise complement complement :: Word256 -> Word256 -- | Bitwise Shift Left shiftL :: Word256 -> Int -> Word256 -- | Bitwise Shift Right shiftR :: Word256 -> Int -> Word256 -- | Bitwise rotate Left rotateL :: Word256 -> Int -> Word256 -- | Bitwise rotate Left rotateR :: Word256 -> Int -> Word256 -- | Population count popCount :: Word256 -> Int fromNatural :: Natural -> Word256 instance GHC.Classes.Eq Basement.Types.Word256.Word256 instance GHC.Show.Show Basement.Types.Word256.Word256 instance GHC.Enum.Enum Basement.Types.Word256.Word256 instance GHC.Enum.Bounded Basement.Types.Word256.Word256 instance GHC.Classes.Ord Basement.Types.Word256.Word256 instance Foreign.Storable.Storable Basement.Types.Word256.Word256 instance Basement.Compat.NumLiteral.Integral Basement.Types.Word256.Word256 instance Basement.Compat.NumLiteral.HasNegation Basement.Types.Word256.Word256 instance Basement.Numerical.Number.IsIntegral Basement.Types.Word256.Word256 instance Basement.Numerical.Number.IsNatural Basement.Types.Word256.Word256 instance GHC.Num.Num Basement.Types.Word256.Word256 instance Data.Bits.Bits Basement.Types.Word256.Word256 module Basement.Nat -- | (Kind) This is the kind of type-level natural numbers. data Nat -- | This class gives the integer associated with a type-level natural. -- There are instances of the class for every concrete literal: 0, 1, 2, -- etc. class KnownNat (n :: Nat) natVal :: forall (n :: Nat) proxy. KnownNat n => proxy n -> Integer -- | Comparison of type-level naturals, as a constraint. type (x :: Nat) <= (y :: Nat) = x <=? y ~ 'True infix 4 <= -- | Comparison of type-level naturals, as a function. NOTE: The -- functionality for this function should be subsumed by CmpNat, -- so this might go away in the future. Please let us know, if you -- encounter discrepancies between the two. type family (a :: Nat) <=? (b :: Nat) :: Bool infix 4 <=? -- | Addition of type-level naturals. type family (a :: Nat) + (b :: Nat) :: Nat infixl 6 + -- | Multiplication of type-level naturals. type family (a :: Nat) * (b :: Nat) :: Nat infixl 7 * -- | Exponentiation of type-level naturals. type family (a :: Nat) ^ (b :: Nat) :: Nat infixr 8 ^ -- | Subtraction of type-level naturals. type family (a :: Nat) - (b :: Nat) :: Nat infixl 6 - -- | Comparison of type-level naturals, as a function. type family CmpNat (a :: Nat) (b :: Nat) :: Ordering natValNatural :: forall n proxy. KnownNat n => proxy n -> Natural natValInt :: forall n proxy. (KnownNat n, NatWithinBound Int n) => proxy n -> Int natValInt8 :: forall n proxy. (KnownNat n, NatWithinBound Int8 n) => proxy n -> Int8 natValInt16 :: forall n proxy. (KnownNat n, NatWithinBound Int16 n) => proxy n -> Int16 natValInt32 :: forall n proxy. (KnownNat n, NatWithinBound Int32 n) => proxy n -> Int32 natValInt64 :: forall n proxy. (KnownNat n, NatWithinBound Int64 n) => proxy n -> Int64 natValWord :: forall n proxy. (KnownNat n, NatWithinBound Word n) => proxy n -> Word natValWord8 :: forall n proxy. (KnownNat n, NatWithinBound Word8 n) => proxy n -> Word8 natValWord16 :: forall n proxy. (KnownNat n, NatWithinBound Word16 n) => proxy n -> Word16 natValWord32 :: forall n proxy. (KnownNat n, NatWithinBound Word32 n) => proxy n -> Word32 natValWord64 :: forall n proxy. (KnownNat n, NatWithinBound Word64 n) => proxy n -> Word64 -- | Get Maximum bounds of different Integral / Natural types related to -- Nat type family NatNumMaxBound ty :: Nat -- | Check if a Nat is in bounds of another integral / natural types type family NatInBoundOf ty n -- | Constraint to check if a natural is within a specific bounds of a -- type. -- -- i.e. given a Nat n, is it possible to convert it to -- ty without losing information type family NatWithinBound ty (n :: Nat) -- | Types to represent ℤ/nℤ. -- -- ℤ/nℤ is a finite field and is defined as the set of natural number: -- {0, 1, ..., n − 1}. module Basement.Bounded -- | A type level bounded natural backed by a Word64 data Zn64 (n :: Nat) unZn64 :: Zn64 n -> Word64 -- | A type level bounded natural data Zn (n :: Nat) unZn :: Zn n -> Natural -- | Create an element of ℤ/nℤ from a Word64 -- -- If the value is greater than n, then the value is normalized by using -- the integer modulus n zn64 :: forall n. (KnownNat n, NatWithinBound Word64 n) => Word64 -> Zn64 n -- | Create an element of ℤ/nℤ from a Natural. -- -- If the value is greater than n, then the value is normalized by using -- the integer modulus n zn :: forall n. KnownNat n => Natural -> Zn n -- | Create an element of ℤ/nℤ from a type level Nat zn64Nat :: forall m n. (KnownNat m, KnownNat n, NatWithinBound Word64 m, NatWithinBound Word64 n, CmpNat m n ~ 'LT) => Proxy m -> Zn64 n -- | Create an element of ℤ/nℤ from a type level Nat znNat :: forall m n. (KnownNat m, KnownNat n, CmpNat m n ~ 'LT) => Proxy m -> Zn n instance GHC.Classes.Ord (Basement.Bounded.Zn64 n) instance GHC.Classes.Eq (Basement.Bounded.Zn64 n) instance GHC.Show.Show (Basement.Bounded.Zn64 n) instance GHC.Classes.Ord (Basement.Bounded.Zn n) instance GHC.Classes.Eq (Basement.Bounded.Zn n) instance GHC.Show.Show (Basement.Bounded.Zn n) instance GHC.TypeNats.KnownNat n => GHC.Num.Num (Basement.Bounded.Zn n) instance GHC.TypeNats.KnownNat n => Basement.Compat.NumLiteral.Integral (Basement.Bounded.Zn n) instance GHC.TypeNats.KnownNat n => Basement.Numerical.Number.IsIntegral (Basement.Bounded.Zn n) instance GHC.TypeNats.KnownNat n => Basement.Numerical.Number.IsNatural (Basement.Bounded.Zn n) instance (GHC.TypeNats.KnownNat n, Basement.Nat.NatWithinBound GHC.Word.Word64 n) => GHC.Num.Num (Basement.Bounded.Zn64 n) instance (GHC.TypeNats.KnownNat n, Basement.Nat.NatWithinBound GHC.Word.Word64 n) => Basement.Compat.NumLiteral.Integral (Basement.Bounded.Zn64 n) instance (GHC.TypeNats.KnownNat n, Basement.Nat.NatWithinBound GHC.Word.Word64 n) => Basement.Numerical.Number.IsIntegral (Basement.Bounded.Zn64 n) instance (GHC.TypeNats.KnownNat n, Basement.Nat.NatWithinBound GHC.Word.Word64 n) => Basement.Numerical.Number.IsNatural (Basement.Bounded.Zn64 n) module Basement.Numerical.Subtractive -- | Represent class of things that can be subtracted. -- -- Note that the result is not necessary of the same type as the operand -- depending on the actual type. -- -- For example: -- --
-- (-) :: Int -> Int -> Int -- (-) :: DateTime -> DateTime -> Seconds -- (-) :: Ptr a -> Ptr a -> PtrDiff -- (-) :: Natural -> Natural -> Maybe Natural --class Subtractive a where { type family Difference a; } (-) :: Subtractive a => a -> a -> Difference a infixl 6 - instance Basement.Numerical.Subtractive.Subtractive GHC.Integer.Type.Integer instance Basement.Numerical.Subtractive.Subtractive GHC.Types.Int instance Basement.Numerical.Subtractive.Subtractive GHC.Int.Int8 instance Basement.Numerical.Subtractive.Subtractive GHC.Int.Int16 instance Basement.Numerical.Subtractive.Subtractive GHC.Int.Int32 instance Basement.Numerical.Subtractive.Subtractive GHC.Int.Int64 instance Basement.Numerical.Subtractive.Subtractive GHC.Natural.Natural instance Basement.Numerical.Subtractive.Subtractive GHC.Types.Word instance Basement.Numerical.Subtractive.Subtractive GHC.Word.Word8 instance Basement.Numerical.Subtractive.Subtractive GHC.Word.Word16 instance Basement.Numerical.Subtractive.Subtractive GHC.Word.Word32 instance Basement.Numerical.Subtractive.Subtractive GHC.Word.Word64 instance Basement.Numerical.Subtractive.Subtractive Basement.Types.Word128.Word128 instance Basement.Numerical.Subtractive.Subtractive Basement.Types.Word256.Word256 instance Basement.Numerical.Subtractive.Subtractive GHC.Types.Float instance Basement.Numerical.Subtractive.Subtractive GHC.Types.Double instance Basement.Numerical.Subtractive.Subtractive GHC.Types.Char instance (GHC.TypeNats.KnownNat n, Basement.Nat.NatWithinBound GHC.Word.Word64 n) => Basement.Numerical.Subtractive.Subtractive (Basement.Bounded.Zn64 n) instance GHC.TypeNats.KnownNat n => Basement.Numerical.Subtractive.Subtractive (Basement.Bounded.Zn n) instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CChar instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CSChar instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CUChar instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CShort instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CUShort instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CInt instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CUInt instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CLong instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CULong instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CPtrdiff instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CSize instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CWchar instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CSigAtomic instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CLLong instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CULLong instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CBool instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CIntPtr instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CUIntPtr instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CIntMax instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CUIntMax instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CClock instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CTime instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CUSeconds instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CSUSeconds instance Basement.Numerical.Subtractive.Subtractive System.Posix.Types.COff instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CFloat instance Basement.Numerical.Subtractive.Subtractive Foreign.C.Types.CDouble module Basement.Numerical.Additive -- | Represent class of things that can be added together, contains a -- neutral element and is commutative. -- --
-- x + azero = x -- azero + x = x -- x + y = y + x --class Additive a azero :: Additive a => a (+) :: Additive a => a -> a -> a scale :: (Additive a, IsNatural n) => n -> a -> a scale :: (Additive a, Enum n, IsNatural n) => n -> a -> a infixl 6 + instance Basement.Numerical.Additive.Additive GHC.Integer.Type.Integer instance Basement.Numerical.Additive.Additive GHC.Types.Int instance Basement.Numerical.Additive.Additive GHC.Int.Int8 instance Basement.Numerical.Additive.Additive GHC.Int.Int16 instance Basement.Numerical.Additive.Additive GHC.Int.Int32 instance Basement.Numerical.Additive.Additive GHC.Int.Int64 instance Basement.Numerical.Additive.Additive GHC.Types.Word instance Basement.Numerical.Additive.Additive GHC.Natural.Natural instance Basement.Numerical.Additive.Additive GHC.Word.Word8 instance Basement.Numerical.Additive.Additive GHC.Word.Word16 instance Basement.Numerical.Additive.Additive GHC.Word.Word32 instance Basement.Numerical.Additive.Additive GHC.Word.Word64 instance Basement.Numerical.Additive.Additive Basement.Types.Word128.Word128 instance Basement.Numerical.Additive.Additive Basement.Types.Word256.Word256 instance Basement.Numerical.Additive.Additive GHC.Types.Float instance Basement.Numerical.Additive.Additive GHC.Types.Double instance Basement.Numerical.Additive.Additive GHC.Real.Rational instance (GHC.TypeNats.KnownNat n, Basement.Nat.NatWithinBound GHC.Word.Word64 n) => Basement.Numerical.Additive.Additive (Basement.Bounded.Zn64 n) instance GHC.TypeNats.KnownNat n => Basement.Numerical.Additive.Additive (Basement.Bounded.Zn n) instance Basement.Numerical.Additive.Additive Foreign.C.Types.CChar instance Basement.Numerical.Additive.Additive Foreign.C.Types.CSChar instance Basement.Numerical.Additive.Additive Foreign.C.Types.CUChar instance Basement.Numerical.Additive.Additive Foreign.C.Types.CShort instance Basement.Numerical.Additive.Additive Foreign.C.Types.CUShort instance Basement.Numerical.Additive.Additive Foreign.C.Types.CInt instance Basement.Numerical.Additive.Additive Foreign.C.Types.CUInt instance Basement.Numerical.Additive.Additive Foreign.C.Types.CLong instance Basement.Numerical.Additive.Additive Foreign.C.Types.CULong instance Basement.Numerical.Additive.Additive Foreign.C.Types.CPtrdiff instance Basement.Numerical.Additive.Additive Foreign.C.Types.CSize instance Basement.Numerical.Additive.Additive Foreign.C.Types.CWchar instance Basement.Numerical.Additive.Additive Foreign.C.Types.CSigAtomic instance Basement.Numerical.Additive.Additive Foreign.C.Types.CLLong instance Basement.Numerical.Additive.Additive Foreign.C.Types.CULLong instance Basement.Numerical.Additive.Additive Foreign.C.Types.CIntPtr instance Basement.Numerical.Additive.Additive Foreign.C.Types.CUIntPtr instance Basement.Numerical.Additive.Additive Foreign.C.Types.CIntMax instance Basement.Numerical.Additive.Additive Foreign.C.Types.CUIntMax instance Basement.Numerical.Additive.Additive Foreign.C.Types.CClock instance Basement.Numerical.Additive.Additive Foreign.C.Types.CTime instance Basement.Numerical.Additive.Additive Foreign.C.Types.CUSeconds instance Basement.Numerical.Additive.Additive Foreign.C.Types.CSUSeconds instance Basement.Numerical.Additive.Additive System.Posix.Types.COff instance Basement.Numerical.Additive.Additive Foreign.C.Types.CFloat instance Basement.Numerical.Additive.Additive Foreign.C.Types.CDouble module Basement.Numerical.Multiplicative -- | Represent class of things that can be multiplied together -- --
-- x * midentity = x -- midentity * x = x --class Multiplicative a -- | Identity element over multiplication midentity :: Multiplicative a => a -- | Multiplication of 2 elements that result in another element (*) :: Multiplicative a => a -> a -> a -- | Raise to power, repeated multiplication e.g. > a ^ 2 = a * a > a -- ^ 10 = (a ^ 5) * (a ^ 5) .. (^) :: (IsNatural n) => a -> n -> -- a (^) :: (Multiplicative a, IsNatural n, Enum n, IDivisible n) => a -> n -> a infixl 7 * infixr 8 ^ -- | Represent types that supports an euclidian division -- --
-- (x ‘div‘ y) * y + (x ‘mod‘ y) == x --class (Additive a, Multiplicative a) => IDivisible a div :: IDivisible a => a -> a -> a mod :: IDivisible a => a -> a -> a divMod :: IDivisible a => a -> a -> (a, a) -- | Support for division between same types -- -- This is likely to change to represent specific mathematic divisions class Multiplicative a => Divisible a (/) :: Divisible a => a -> a -> a infixl 7 / recip :: Divisible a => a -> a instance Basement.Numerical.Multiplicative.Divisible GHC.Real.Rational instance Basement.Numerical.Multiplicative.Divisible GHC.Types.Float instance Basement.Numerical.Multiplicative.Divisible GHC.Types.Double instance Basement.Numerical.Multiplicative.Divisible Foreign.C.Types.CFloat instance Basement.Numerical.Multiplicative.Divisible Foreign.C.Types.CDouble instance Basement.Numerical.Multiplicative.Multiplicative GHC.Integer.Type.Integer instance Basement.Numerical.Multiplicative.Multiplicative GHC.Types.Int instance Basement.Numerical.Multiplicative.Multiplicative GHC.Int.Int8 instance Basement.Numerical.Multiplicative.Multiplicative GHC.Int.Int16 instance Basement.Numerical.Multiplicative.Multiplicative GHC.Int.Int32 instance Basement.Numerical.Multiplicative.Multiplicative GHC.Int.Int64 instance Basement.Numerical.Multiplicative.Multiplicative GHC.Natural.Natural instance Basement.Numerical.Multiplicative.Multiplicative GHC.Types.Word instance Basement.Numerical.Multiplicative.Multiplicative GHC.Word.Word8 instance Basement.Numerical.Multiplicative.Multiplicative GHC.Word.Word16 instance Basement.Numerical.Multiplicative.Multiplicative GHC.Word.Word32 instance Basement.Numerical.Multiplicative.Multiplicative GHC.Word.Word64 instance Basement.Numerical.Multiplicative.Multiplicative Basement.Types.Word128.Word128 instance Basement.Numerical.Multiplicative.Multiplicative Basement.Types.Word256.Word256 instance Basement.Numerical.Multiplicative.Multiplicative GHC.Types.Float instance Basement.Numerical.Multiplicative.Multiplicative GHC.Types.Double instance Basement.Numerical.Multiplicative.Multiplicative GHC.Real.Rational instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CChar instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CSChar instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CUChar instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CShort instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CUShort instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CInt instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CUInt instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CLong instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CULong instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CPtrdiff instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CSize instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CWchar instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CSigAtomic instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CLLong instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CULLong instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CIntPtr instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CUIntPtr instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CIntMax instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CUIntMax instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CClock instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CTime instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CUSeconds instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CSUSeconds instance Basement.Numerical.Multiplicative.Multiplicative System.Posix.Types.COff instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CFloat instance Basement.Numerical.Multiplicative.Multiplicative Foreign.C.Types.CDouble instance Basement.Numerical.Multiplicative.IDivisible GHC.Integer.Type.Integer instance Basement.Numerical.Multiplicative.IDivisible GHC.Types.Int instance Basement.Numerical.Multiplicative.IDivisible GHC.Int.Int8 instance Basement.Numerical.Multiplicative.IDivisible GHC.Int.Int16 instance Basement.Numerical.Multiplicative.IDivisible GHC.Int.Int32 instance Basement.Numerical.Multiplicative.IDivisible GHC.Int.Int64 instance Basement.Numerical.Multiplicative.IDivisible GHC.Natural.Natural instance Basement.Numerical.Multiplicative.IDivisible GHC.Types.Word instance Basement.Numerical.Multiplicative.IDivisible GHC.Word.Word8 instance Basement.Numerical.Multiplicative.IDivisible GHC.Word.Word16 instance Basement.Numerical.Multiplicative.IDivisible GHC.Word.Word32 instance Basement.Numerical.Multiplicative.IDivisible GHC.Word.Word64 instance Basement.Numerical.Multiplicative.IDivisible Basement.Types.Word128.Word128 instance Basement.Numerical.Multiplicative.IDivisible Basement.Types.Word256.Word256 instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CChar instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CSChar instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CUChar instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CShort instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CUShort instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CInt instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CUInt instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CLong instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CULong instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CPtrdiff instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CSize instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CWchar instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CSigAtomic instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CLLong instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CULLong instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CIntPtr instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CUIntPtr instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CIntMax instance Basement.Numerical.Multiplicative.IDivisible Foreign.C.Types.CUIntMax module Basement.Types.OffsetSize -- | File size in bytes newtype FileSize FileSize :: Word64 -> FileSize -- | Offset in a data structure consisting of elements of type ty. -- -- Int is a terrible backing type which is hard to get away from, -- considering that GHC/Haskell are mostly using this for offset. Trying -- to bring some sanity by a lightweight wrapping. newtype Offset ty Offset :: Int -> Offset ty -- | Offset in bytes used for memory addressing (e.g. in a vector, string, -- ..) type Offset8 = Offset Word8 sentinel :: Offset ty offsetOfE :: CountOf Word8 -> Offset ty -> Offset8 offsetPlusE :: Offset ty -> CountOf ty -> Offset ty offsetMinusE :: Offset ty -> CountOf ty -> Offset ty offsetRecast :: CountOf Word8 -> CountOf Word8 -> Offset ty -> Offset ty2 offsetCast :: Proxy (a -> b) -> Offset a -> Offset b -- | subtract 2 CountOf values of the same type. -- -- m need to be greater than n, otherwise negative count error ensue use -- the safer (-) version if unsure. offsetSub :: Offset a -> Offset a -> Offset a offsetShiftL :: Int -> Offset ty -> Offset ty2 offsetShiftR :: Int -> Offset ty -> Offset ty2 sizeCast :: Proxy (a -> b) -> CountOf a -> CountOf b sizeLastOffset :: CountOf a -> Offset a sizeAsOffset :: CountOf a -> Offset a -- | subtract 2 CountOf values of the same type. -- -- m need to be greater than n, otherwise negative count error ensue use -- the safer (-) version if unsure. sizeSub :: CountOf a -> CountOf a -> CountOf a -- | alignment need to be a power of 2 countOfRoundUp :: Int -> CountOf ty -> CountOf ty offsetAsSize :: Offset a -> CountOf a (+.) :: Offset ty -> Int -> Offset ty (.==#) :: Offset ty -> CountOf ty -> Bool -- | CountOf of a data structure. -- -- More specifically, it represents the number of elements of type -- ty that fit into the data structure. -- --
-- >>> length (fromList ['a', 'b', 'c', '🌟']) :: CountOf Char -- CountOf 4 ---- -- Same caveats as Offset apply here. newtype CountOf ty CountOf :: Int -> CountOf ty sizeOfE :: CountOf Word8 -> CountOf ty -> CountOf Word8 csizeOfOffset :: Offset8 -> CSize csizeOfSize :: CountOf Word8 -> CSize sizeOfCSSize :: CSsize -> CountOf Word8 sizeOfCSize :: CSize -> CountOf Word8 type Countable ty n = NatWithinBound (CountOf ty) n type Offsetable ty n = NatWithinBound (Offset ty) n natValCountOf :: forall n ty proxy. (KnownNat n, NatWithinBound (CountOf ty) n) => proxy n -> CountOf ty natValOffset :: forall n ty proxy. (KnownNat n, NatWithinBound (Offset ty) n) => proxy n -> Offset ty instance GHC.Classes.Ord Basement.Types.OffsetSize.FileSize instance GHC.Classes.Eq Basement.Types.OffsetSize.FileSize instance GHC.Show.Show Basement.Types.OffsetSize.FileSize instance GHC.Num.Num (Basement.Types.OffsetSize.Offset ty) instance Basement.Compat.NumLiteral.Integral (Basement.Types.OffsetSize.Offset ty) instance Basement.Numerical.Additive.Additive (Basement.Types.OffsetSize.Offset ty) instance GHC.Enum.Enum (Basement.Types.OffsetSize.Offset ty) instance GHC.Classes.Ord (Basement.Types.OffsetSize.Offset ty) instance GHC.Classes.Eq (Basement.Types.OffsetSize.Offset ty) instance GHC.Show.Show (Basement.Types.OffsetSize.Offset ty) instance Basement.Compat.NumLiteral.Integral (Basement.Types.OffsetSize.CountOf ty) instance GHC.Enum.Enum (Basement.Types.OffsetSize.CountOf ty) instance GHC.Classes.Ord (Basement.Types.OffsetSize.CountOf ty) instance GHC.Classes.Eq (Basement.Types.OffsetSize.CountOf ty) instance GHC.Show.Show (Basement.Types.OffsetSize.CountOf ty) instance Basement.Numerical.Subtractive.Subtractive (Basement.Types.OffsetSize.Offset ty) instance GHC.Num.Num (Basement.Types.OffsetSize.CountOf ty) instance Basement.Numerical.Number.IsIntegral (Basement.Types.OffsetSize.CountOf ty) instance Basement.Numerical.Number.IsNatural (Basement.Types.OffsetSize.CountOf ty) instance Basement.Numerical.Additive.Additive (Basement.Types.OffsetSize.CountOf ty) instance Basement.Numerical.Subtractive.Subtractive (Basement.Types.OffsetSize.CountOf ty) instance GHC.Base.Semigroup (Basement.Types.OffsetSize.CountOf ty) instance GHC.Base.Monoid (Basement.Types.OffsetSize.CountOf ty) instance Basement.Numerical.Number.IsIntegral (Basement.Types.OffsetSize.Offset ty) instance Basement.Numerical.Number.IsNatural (Basement.Types.OffsetSize.Offset ty) module Basement.Types.Ptr data Addr Addr :: Addr# -> Addr addrPlus :: Addr -> Offset Word8 -> Addr addrPlusSz :: Addr -> CountOf Word8 -> Addr addrPlusCSz :: Addr -> CSize -> Addr -- | A value of type Ptr a represents a pointer to an -- object, or an array of objects, which may be marshalled to or from -- Haskell values of type a. -- -- The type a will often be an instance of class Storable -- which provides the marshalling operations. However this is not -- essential, and you can provide your own operations to access the -- pointer. For example you might write small foreign functions to get or -- set the fields of a C struct. data Ptr a Ptr :: Addr# -> Ptr a ptrPlus :: Ptr a -> Offset Word8 -> Ptr a ptrPlusSz :: Ptr a -> CountOf Word8 -> Ptr a ptrPlusCSz :: Ptr a -> CSize -> Ptr a -- | The castPtr function casts a pointer from one type to another. castPtr :: Ptr a -> Ptr b instance GHC.Classes.Ord Basement.Types.Ptr.Addr instance GHC.Classes.Eq Basement.Types.Ptr.Addr module Basement.Terminal initialize :: IO () -- | Return the size of the current terminal -- -- If the system is not supported or that querying the system result in -- an error then a default size of (80, 24) will be given back. getDimensions :: IO (CountOf Char, CountOf Char) module Basement.PrimType -- | Represent the accessor for types that can be stored in the UArray and -- MUArray. -- -- Types need to be a instance of storable and have fixed sized. class Eq ty => PrimType ty where { -- | type level size of the given ty type family PrimSize ty :: Nat; } -- | get the size in bytes of a ty element primSizeInBytes :: PrimType ty => Proxy ty -> CountOf Word8 -- | get the shift size primShiftToBytes :: PrimType ty => Proxy ty -> Int -- | return the element stored at a specific index primBaUIndex :: PrimType ty => ByteArray# -> Offset ty -> ty -- | Read an element at an index in a mutable array primMbaURead :: (PrimType ty, PrimMonad prim) => MutableByteArray# (PrimState prim) -> Offset ty -> prim ty -- | Write an element to a specific cell in a mutable array. primMbaUWrite :: (PrimType ty, PrimMonad prim) => MutableByteArray# (PrimState prim) -> Offset ty -> ty -> prim () -- | Read from Address, without a state. the value read should be -- considered a constant for all pratical purpose, otherwise bad thing -- will happens. primAddrIndex :: PrimType ty => Addr# -> Offset ty -> ty -- | Read a value from Addr in a specific primitive monad primAddrRead :: (PrimType ty, PrimMonad prim) => Addr# -> Offset ty -> prim ty -- | Write a value to Addr in a specific primitive monad primAddrWrite :: (PrimType ty, PrimMonad prim) => Addr# -> Offset ty -> ty -> prim () -- | A constraint class for serializable type that have an unique memory -- compare representation -- -- e.g. Float and Double have -0.0 and 0.0 which are Eq individual, yet -- have a different memory representation which doesn't allow for memcmp -- operation class PrimMemoryComparable ty primBaIndex :: PrimType ty => ByteArray# -> Offset ty -> ty primMbaRead :: (PrimType ty, PrimMonad prim) => MutableByteArray# (PrimState prim) -> Offset ty -> prim ty primMbaWrite :: (PrimType ty, PrimMonad prim) => MutableByteArray# (PrimState prim) -> Offset ty -> ty -> prim () primArrayIndex :: Array# ty -> Offset ty -> ty primMutableArrayRead :: PrimMonad prim => MutableArray# (PrimState prim) ty -> Offset ty -> prim ty primMutableArrayWrite :: PrimMonad prim => MutableArray# (PrimState prim) ty -> Offset ty -> ty -> prim () -- | Deprecated: use offsetInBytes primOffsetOfE :: forall a. PrimType a => Offset a -> Offset Word8 primOffsetRecast :: forall a b. (PrimType a, PrimType b) => Offset a -> Offset b -- | Cast a CountOf linked to type A (CountOf A) to a CountOf linked to -- type B (CountOf B) sizeRecast :: forall a b. (PrimType a, PrimType b) => CountOf a -> CountOf b offsetAsSize :: Offset a -> CountOf a sizeAsOffset :: CountOf a -> Offset a sizeInBytes :: forall a. PrimType a => CountOf a -> CountOf Word8 offsetInBytes :: forall a. PrimType a => Offset a -> Offset Word8 offsetInElements :: forall a. PrimType a => Offset Word8 -> Offset a offsetIsAligned :: forall a. PrimType a => Proxy a -> Offset Word8 -> Bool primWordGetByteAndShift :: Word# -> (# Word#, Word# #) primWord64GetByteAndShift :: Word# -> (# Word#, Word# #) primWord64GetHiLo :: Word# -> (# Word#, Word# #) instance Basement.PrimType.PrimMemoryComparable GHC.Types.Int instance Basement.PrimType.PrimMemoryComparable GHC.Types.Word instance Basement.PrimType.PrimMemoryComparable GHC.Word.Word8 instance Basement.PrimType.PrimMemoryComparable GHC.Word.Word16 instance Basement.PrimType.PrimMemoryComparable GHC.Word.Word32 instance Basement.PrimType.PrimMemoryComparable GHC.Word.Word64 instance Basement.PrimType.PrimMemoryComparable Basement.Types.Word128.Word128 instance Basement.PrimType.PrimMemoryComparable Basement.Types.Word256.Word256 instance Basement.PrimType.PrimMemoryComparable GHC.Int.Int8 instance Basement.PrimType.PrimMemoryComparable GHC.Int.Int16 instance Basement.PrimType.PrimMemoryComparable GHC.Int.Int32 instance Basement.PrimType.PrimMemoryComparable GHC.Int.Int64 instance Basement.PrimType.PrimMemoryComparable GHC.Types.Char instance Basement.PrimType.PrimMemoryComparable Foreign.C.Types.CChar instance Basement.PrimType.PrimMemoryComparable Foreign.C.Types.CUChar instance Basement.PrimType.PrimMemoryComparable a => Basement.PrimType.PrimMemoryComparable (Basement.Endianness.LE a) instance Basement.PrimType.PrimMemoryComparable a => Basement.PrimType.PrimMemoryComparable (Basement.Endianness.BE a) instance Basement.PrimType.PrimType GHC.Types.Int instance Basement.PrimType.PrimType GHC.Types.Word instance Basement.PrimType.PrimType GHC.Word.Word8 instance Basement.PrimType.PrimType GHC.Word.Word16 instance Basement.PrimType.PrimType GHC.Word.Word32 instance Basement.PrimType.PrimType GHC.Word.Word64 instance Basement.PrimType.PrimType Basement.Types.Word128.Word128 instance Basement.PrimType.PrimType Basement.Types.Word256.Word256 instance Basement.PrimType.PrimType GHC.Int.Int8 instance Basement.PrimType.PrimType GHC.Int.Int16 instance Basement.PrimType.PrimType GHC.Int.Int32 instance Basement.PrimType.PrimType GHC.Int.Int64 instance Basement.PrimType.PrimType GHC.Types.Float instance Basement.PrimType.PrimType GHC.Types.Double instance Basement.PrimType.PrimType GHC.Types.Char instance Basement.PrimType.PrimType Foreign.C.Types.CChar instance Basement.PrimType.PrimType Foreign.C.Types.CUChar instance Basement.PrimType.PrimType Basement.Types.Char7.Char7 instance Basement.PrimType.PrimType a => Basement.PrimType.PrimType (Basement.Endianness.LE a) instance Basement.PrimType.PrimType a => Basement.PrimType.PrimType (Basement.Endianness.BE a) module Basement.MutableBuilder newtype Builder collection mutCollection step state err a Builder :: State (Offset step, BuildingState collection mutCollection step (PrimState state), Maybe err) state a -> Builder collection mutCollection step state err a [runBuilder] :: Builder collection mutCollection step state err a -> State (Offset step, BuildingState collection mutCollection step (PrimState state), Maybe err) state a -- | The in-progress state of a building operation. -- -- The previous buffers are in reverse order, and this contains the -- current buffer and the state of progress packing the elements inside. data BuildingState collection mutCollection step state BuildingState :: [collection] -> !CountOf step -> mutCollection state -> !CountOf step -> BuildingState collection mutCollection step state [prevChunks] :: BuildingState collection mutCollection step state -> [collection] [prevChunksSize] :: BuildingState collection mutCollection step state -> !CountOf step [curChunk] :: BuildingState collection mutCollection step state -> mutCollection state [chunkSize] :: BuildingState collection mutCollection step state -> !CountOf step instance GHC.Base.Monad state => GHC.Base.Monad (Basement.MutableBuilder.Builder collection mutCollection step state err) instance GHC.Base.Monad state => GHC.Base.Applicative (Basement.MutableBuilder.Builder collection mutCollection step state err) instance GHC.Base.Monad state => GHC.Base.Functor (Basement.MutableBuilder.Builder collection mutCollection step state err) instance GHC.Base.Monad state => Basement.Monad.MonadFailure (Basement.MutableBuilder.Builder collection mutCollection step state err) -- | Common part for vectors module Basement.Exception -- | Exception during an operation accessing the vector out of bound -- -- Represent the type of operation, the index accessed, and the total -- length of the vector. data OutOfBound OutOfBound :: OutOfBoundOperation -> Int -> Int -> OutOfBound -- | The type of operation that triggers an OutOfBound exception. -- --
-- indexStatic @1 (toListN_ [1,2,3] :: ListN 3 Int) --indexStatic :: forall i n a. (KnownNat i, CmpNat i n ~ 'LT, Offsetable a i) => ListN n a -> a -- | Update the value in a list at a specific location updateAt :: forall n a. Offset a -> (a -> a) -> ListN n a -> ListN n a -- | Map all elements in a list map :: (a -> b) -> ListN n a -> ListN n b -- | Map all elements in a list with an additional index mapi :: (Natural -> a -> b) -> ListN n a -> ListN n b -- | Check if a list contains the element a elem :: Eq a => a -> ListN n a -> Bool -- | Fold all elements from left foldl :: (b -> a -> b) -> b -> ListN n a -> b -- | Fold all elements from left strictly foldl' :: (b -> a -> b) -> b -> ListN n a -> b -- | Fold all elements from left strictly with a first element as the -- accumulator foldl1' :: 1 <= n => (a -> a -> a) -> ListN n a -> a -- | scanl is similar to foldl, but returns a list of -- successive reduced values from the left -- --
-- scanl f z [x1, x2, ...] == [z, z `f` x1, (z `f` x1) `f` x2, ...] --scanl' :: (b -> a -> b) -> b -> ListN n a -> ListN (n + 1) b -- | scanl1 is a variant of scanl that has no starting -- value argument: -- --
-- scanl1 f [x1, x2, ...] == [x1, x1 `f` x2, ...] --scanl1' :: (a -> a -> a) -> ListN n a -> ListN n a -- | Fold all elements from right foldr :: (a -> b -> b) -> b -> ListN n a -> b -- | Fold all elements from right assuming at least one element is in the -- list. foldr1 :: 1 <= n => (a -> a -> a) -> ListN n a -> a -- | Reverse a list reverse :: ListN n a -> ListN n a -- | Append 2 list together returning the new list append :: ListN n a -> ListN m a -> ListN (n + m) a -- | Get the minimum element of a list minimum :: (Ord a, 1 <= n) => ListN n a -> a -- | Get the maximum element of a list maximum :: (Ord a, 1 <= n) => ListN n a -> a -- | Get the head element of a list head :: 1 <= n => ListN n a -> a -- | Get the tail of a list tail :: 1 <= n => ListN n a -> ListN (n - 1) a -- | Get the list with the last element missing init :: 1 <= n => ListN n a -> ListN (n - 1) a -- | Take m elements from the beggining of the list. -- -- The number of elements need to be less or equal to the list in -- argument take :: forall a (m :: Nat) (n :: Nat). (KnownNat m, NatWithinBound Int m, m <= n) => ListN n a -> ListN m a -- | Drop elements from a list keeping the m remaining elements drop :: forall a d (m :: Nat) (n :: Nat). (KnownNat d, NatWithinBound Int d, (n - m) ~ d, m <= n) => ListN n a -> ListN m a -- | Split a list into two, returning 2 lists splitAt :: forall a d (m :: Nat) (n :: Nat). (KnownNat d, NatWithinBound Int d, (n - m) ~ d, m <= n) => ListN n a -> (ListN m a, ListN (n - m) a) -- | Zip 2 lists of the same size, returning a new list of the tuple of -- each elements zip :: ListN n a -> ListN n b -> ListN n (a, b) -- | Zip 3 lists of the same size zip3 :: ListN n a -> ListN n b -> ListN n c -> ListN n (a, b, c) -- | Zip 4 lists of the same size zip4 :: ListN n a -> ListN n b -> ListN n c -> ListN n d -> ListN n (a, b, c, d) -- | Zip 5 lists of the same size zip5 :: ListN n a -> ListN n b -> ListN n c -> ListN n d -> ListN n e -> ListN n (a, b, c, d, e) -- | Unzip a list of tuple, to 2 List of the deconstructed tuples unzip :: ListN n (a, b) -> (ListN n a, ListN n b) -- | Zip 2 lists using a function zipWith :: (a -> b -> x) -> ListN n a -> ListN n b -> ListN n x -- | Zip 3 lists using a function zipWith3 :: (a -> b -> c -> x) -> ListN n a -> ListN n b -> ListN n c -> ListN n x -- | Zip 4 lists using a function zipWith4 :: (a -> b -> c -> d -> x) -> ListN n a -> ListN n b -> ListN n c -> ListN n d -> ListN n x -- | Zip 5 lists using a function zipWith5 :: (a -> b -> c -> d -> e -> x) -> ListN n a -> ListN n b -> ListN n c -> ListN n d -> ListN n e -> ListN n x -- | Create a list of n elements where each element is the element in -- argument replicate :: forall (n :: Nat) a. (NatWithinBound Int n, KnownNat n) => a -> ListN n a -- | performs a monadic action n times, gathering the results in a List of -- size n. replicateM :: forall (n :: Nat) m a. (NatWithinBound Int n, Monad m, KnownNat n) => m a -> m (ListN n a) -- | Evaluate each monadic action in the list sequentially, and collect the -- results. sequence :: Monad m => ListN n (m a) -> m (ListN n a) -- | Evaluate each monadic action in the list sequentially, and ignore the -- results. sequence_ :: Monad m => ListN n (m a) -> m () -- | Map each element of a List to a monadic action, evaluate these actions -- sequentially and collect the results mapM :: Monad m => (a -> m b) -> ListN n a -> m (ListN n b) -- | Map each element of a List to a monadic action, evaluate these actions -- sequentially and ignore the results mapM_ :: Monad m => (a -> m b) -> ListN n a -> m () instance GHC.Generics.Generic (Basement.Sized.List.ListN n a) instance GHC.Classes.Ord a => GHC.Classes.Ord (Basement.Sized.List.ListN n a) instance GHC.Classes.Eq a => GHC.Classes.Eq (Basement.Sized.List.ListN n a) instance GHC.Show.Show a => GHC.Show.Show (Basement.Sized.List.ListN n a) instance Basement.NormalForm.NormalForm a => Basement.NormalForm.NormalForm (Basement.Sized.List.ListN n a) module Basement.Cast -- | Cast an object of type a to b. -- -- Do not add instance of this class if the source type is not of the -- same size of the destination type. Also keep in mind this is casting a -- value of a given type into a destination type. The value won't be -- changed to fit the destination represention. -- -- If you wish to convert a value of a given type into another type, look -- at From and TryFrom. -- --
-- cast (-10 :: Int) :: Word === 18446744073709551606 --class Cast source destination cast :: Cast source destination => source -> destination cast :: (Cast source destination, PrimType source, PrimType destination, PrimSize source ~ PrimSize destination) => source -> destination instance Basement.Cast.Cast GHC.Int.Int8 GHC.Word.Word8 instance Basement.Cast.Cast GHC.Int.Int16 GHC.Word.Word16 instance Basement.Cast.Cast GHC.Int.Int32 GHC.Word.Word32 instance Basement.Cast.Cast GHC.Int.Int64 GHC.Word.Word64 instance Basement.Cast.Cast GHC.Types.Int GHC.Types.Word instance Basement.Cast.Cast GHC.Word.Word8 GHC.Int.Int8 instance Basement.Cast.Cast GHC.Word.Word16 GHC.Int.Int16 instance Basement.Cast.Cast GHC.Word.Word32 GHC.Int.Int32 instance Basement.Cast.Cast GHC.Word.Word64 GHC.Int.Int64 instance Basement.Cast.Cast GHC.Types.Word GHC.Types.Int instance Basement.Cast.Cast GHC.Types.Word GHC.Word.Word64 instance Basement.Cast.Cast GHC.Word.Word64 GHC.Types.Word instance Basement.Cast.Cast GHC.Types.Word GHC.Int.Int64 instance Basement.Cast.Cast GHC.Int.Int64 GHC.Types.Word instance Basement.Cast.Cast GHC.Types.Int GHC.Int.Int64 instance Basement.Cast.Cast GHC.Int.Int64 GHC.Types.Int instance Basement.Cast.Cast GHC.Types.Int GHC.Word.Word64 instance Basement.Cast.Cast GHC.Word.Word64 GHC.Types.Int instance Basement.Cast.Cast (Basement.Block.Base.Block a) (Basement.Block.Base.Block GHC.Word.Word8) -- | A block of memory that contains elements of a type, very similar to an -- unboxed array but with the key difference: -- --
-- breakEnd (> 0) [1,2,3,0,0,0] ---- -- ([1,2,3], [0,0,0]) breakEnd :: forall ty. PrimType ty => (ty -> Bool) -> UArray ty -> (UArray ty, UArray ty) breakElem :: PrimType ty => ty -> UArray ty -> (UArray ty, UArray ty) -- | Similar to breakElem specialized to split on linefeed -- -- it either returns: * Left. no line has been found, and whether the -- last character is a CR * Right, a line has been found with an optional -- CR, and it returns the array of bytes on the left of the CR/LF, and -- the the array of bytes on the right of the LF. breakLine :: UArray Word8 -> Either Bool (UArray Word8, UArray Word8) elem :: PrimType ty => ty -> UArray ty -> Bool indices :: PrimType ty => UArray ty -> UArray ty -> [Offset ty] intersperse :: forall ty. PrimType ty => ty -> UArray ty -> UArray ty span :: PrimType ty => (ty -> Bool) -> UArray ty -> (UArray ty, UArray ty) spanEnd :: PrimType ty => (ty -> Bool) -> UArray ty -> (UArray ty, UArray ty) cons :: PrimType ty => ty -> UArray ty -> UArray ty snoc :: PrimType ty => UArray ty -> ty -> UArray ty uncons :: PrimType ty => UArray ty -> Maybe (ty, UArray ty) unsnoc :: PrimType ty => UArray ty -> Maybe (UArray ty, ty) find :: PrimType ty => (ty -> Bool) -> UArray ty -> Maybe ty sortBy :: forall ty. PrimType ty => (ty -> ty -> Ordering) -> UArray ty -> UArray ty filter :: forall ty. PrimType ty => (ty -> Bool) -> UArray ty -> UArray ty reverse :: forall ty. PrimType ty => UArray ty -> UArray ty -- | Replace all the occurrencies of needle with -- replacement in the haystack string. replace :: PrimType ty => UArray ty -> UArray ty -> UArray ty -> UArray ty foldr :: PrimType ty => (ty -> a -> a) -> a -> UArray ty -> a foldl' :: PrimType ty => (a -> ty -> a) -> a -> UArray ty -> a foldr1 :: PrimType ty => (ty -> ty -> ty) -> NonEmpty (UArray ty) -> ty foldl1' :: PrimType ty => (ty -> ty -> ty) -> NonEmpty (UArray ty) -> ty all :: PrimType ty => (ty -> Bool) -> UArray ty -> Bool any :: PrimType ty => (ty -> Bool) -> UArray ty -> Bool isPrefixOf :: PrimType ty => UArray ty -> UArray ty -> Bool isSuffixOf :: PrimType ty => UArray ty -> UArray ty -> Bool foreignMem :: PrimType ty => FinalPtr ty -> CountOf ty -> UArray ty -- | Create a foreign UArray from foreign memory and given offset/size -- -- No check are performed to make sure this is valid, so this is unsafe. -- -- This is particularly useful when dealing with foreign memory and -- ByteString fromForeignPtr :: PrimType ty => (ForeignPtr ty, Int, Int) -> UArray ty builderAppend :: (PrimType ty, PrimMonad state) => ty -> Builder (UArray ty) (MUArray ty) ty state err () builderBuild :: (PrimType ty, PrimMonad m) => Int -> Builder (UArray ty) (MUArray ty) ty m err () -> m (Either err (UArray ty)) builderBuild_ :: (PrimType ty, PrimMonad m) => Int -> Builder (UArray ty) (MUArray ty) ty m () () -> m (UArray ty) toHexadecimal :: PrimType ty => UArray ty -> UArray Word8 toBase64Internal :: PrimType ty => Addr# -> UArray ty -> Bool -> UArray Word8 -- | A AsciiString type backed by a ASCII encoded byte array and -- all the necessary functions to manipulate the string. module Basement.Types.AsciiString -- | Opaque packed array of characters in the ASCII encoding newtype AsciiString AsciiString :: UArray Char7 -> AsciiString [toBytes] :: AsciiString -> UArray Char7 newtype MutableAsciiString st MutableAsciiString :: MUArray Char7 st -> MutableAsciiString st -- | Convert a Byte Array representing ASCII data directly to an -- AsciiString without checking for ASCII validity -- -- If the input contains invalid Char7 value (anything above 0x7f), it -- will trigger runtime async errors when processing data. -- -- In doubt, use fromBytes fromBytesUnsafe :: UArray Word8 -> AsciiString -- | Convert a Byte Array representing ASCII checking validity. -- -- If the byte array is not valid, then Nothing is returned fromBytes :: UArray Word8 -> Maybe AsciiString instance GHC.Classes.Ord Basement.Types.AsciiString.AsciiString instance GHC.Classes.Eq Basement.Types.AsciiString.AsciiString instance GHC.Base.Monoid Basement.Types.AsciiString.AsciiString instance GHC.Base.Semigroup Basement.Types.AsciiString.AsciiString instance GHC.Show.Show Basement.Types.AsciiString.AsciiString instance Data.String.IsString Basement.Types.AsciiString.AsciiString instance GHC.Exts.IsList Basement.Types.AsciiString.AsciiString module Basement.Sized.UVect data UVect (n :: Nat) a data MUVect (n :: Nat) ty st unUVect :: UVect n a -> UArray a toUVect :: forall n ty. (PrimType ty, KnownNat n, Countable ty n) => UArray ty -> Maybe (UVect n ty) empty :: PrimType ty => UVect 0 ty singleton :: PrimType ty => ty -> UVect 1 ty replicate :: forall n ty. (KnownNat n, Countable ty n, PrimType ty) => ty -> UVect n ty thaw :: (KnownNat n, PrimMonad prim, PrimType ty) => UVect n ty -> prim (MUVect n ty (PrimState prim)) freeze :: (PrimMonad prim, PrimType ty, Countable ty n) => MUVect n ty (PrimState prim) -> prim (UVect n ty) index :: forall i n ty. PrimType ty => UVect n ty -> Offset ty -> ty map :: (PrimType a, PrimType b) => (a -> b) -> UVect n a -> UVect n b foldl' :: PrimType ty => (a -> ty -> a) -> a -> UVect n ty -> a foldr :: PrimType ty => (ty -> a -> a) -> a -> UVect n ty -> a cons :: PrimType ty => ty -> UVect n ty -> UVect (n + 1) ty snoc :: PrimType ty => UVect n ty -> ty -> UVect (n + 1) ty elem :: PrimType ty => ty -> UVect n ty -> Bool sub :: forall i j n ty. ((i <=? n) ~ 'True, (j <=? n) ~ 'True, (i <=? j) ~ 'True, PrimType ty, KnownNat i, KnownNat j, Offsetable ty i, Offsetable ty j) => UVect n ty -> UVect (j - i) ty uncons :: forall n ty. (CmpNat 0 n ~ 'LT, PrimType ty, KnownNat n, Offsetable ty n) => UVect n ty -> (ty, UVect (n - 1) ty) unsnoc :: forall n ty. (CmpNat 0 n ~ 'LT, KnownNat n, PrimType ty, Offsetable ty n) => UVect n ty -> (UVect (n - 1) ty, ty) splitAt :: forall i n ty. (CmpNat i n ~ 'LT, PrimType ty, KnownNat i, Countable ty i) => UVect n ty -> (UVect i ty, UVect (n - i) ty) all :: PrimType ty => (ty -> Bool) -> UVect n ty -> Bool any :: PrimType ty => (ty -> Bool) -> UVect n ty -> Bool find :: PrimType ty => (ty -> Bool) -> UVect n ty -> Maybe ty reverse :: PrimType ty => UVect n ty -> UVect n ty sortBy :: PrimType ty => (ty -> ty -> Ordering) -> UVect n ty -> UVect n ty intersperse :: (CmpNat n 1 ~ 'GT, PrimType ty) => ty -> UVect n ty -> UVect ((n + n) - 1) ty instance (Basement.PrimType.PrimType a, GHC.Show.Show a) => GHC.Show.Show (Basement.Sized.UVect.UVect n a) instance Basement.PrimType.PrimType a => GHC.Classes.Eq (Basement.Sized.UVect.UVect n a) instance Basement.NormalForm.NormalForm (Basement.Sized.UVect.UVect n a) module Basement.Types.CharUTF8 -- | Represent an already encoded UTF8 Char where the the lowest 8 bits is -- the start of the sequence. If this contains a multi bytes sequence -- then each higher 8 bits are filled with the remaining sequence 8 bits -- per 8 bits. -- -- For example: A => U+0041 => 41 => 0x00000041 '€ -- => U+20AC => E2 82 AC => 0x00AC82E2 𐍈 => U+10348 -- => F0 90 8D 88 => 0x888D90F0 newtype CharUTF8 CharUTF8 :: Word32 -> CharUTF8 -- | Encode a Char into a CharUTF8 encodeCharUTF8 :: Char -> CharUTF8 -- | decode a CharUTF8 into a Char -- -- If the value inside a CharUTF8 is not properly encoded, this will -- result in violation of the Char invariants decodeCharUTF8 :: CharUTF8 -> Char -- | re-export of all the base prelude and basic primitive stuffs module Basement.Imports -- | Application operator. This operator is redundant, since ordinary -- application (f x) means the same as (f $ x). -- However, $ 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 map -- ($ 0) xs, or zipWith ($) fs xs. -- -- Note that ($) is levity-polymorphic in its result -- type, so that foo $ True where foo :: Bool -> -- Int# is well-typed. ($) :: forall (r :: RuntimeRep) a (b :: TYPE r). (a -> b) -> a -> b infixr 0 $ -- | Strict (call-by-value) application operator. It takes a function and -- an argument, evaluates the argument to weak head normal form (WHNF), -- then calls the function with that value. ($!) :: forall (r :: RuntimeRep) a (b :: TYPE r). (a -> b) -> a -> b infixr 0 $! -- | Boolean "and", lazy in the second argument (&&) :: Bool -> Bool -> Bool infixr 3 && -- | Boolean "or", lazy in the second argument (||) :: Bool -> Bool -> Bool infixr 2 || -- | morphism composition (.) :: forall (b :: k) (c :: k) (a :: k). Category cat => cat b c -> cat a b -> cat a c infixr 9 . -- | 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. -- --
-- >>> show <$> Nothing -- Nothing -- -- >>> show <$> Just 3 -- Just "3" ---- -- Convert from an Either Int Int to an -- Either Int String using show: -- --
-- >>> show <$> Left 17 -- Left 17 -- -- >>> show <$> Right 17 -- Right "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) --(<$>) :: Functor f => (a -> b) -> f a -> f b infixl 4 <$> -- | Boolean "not" not :: Bool -> Bool -- | otherwise is defined as the value True. It helps to make -- guards more readable. eg. -- --
-- f x | x < 0 = ... -- | otherwise = ... --otherwise :: Bool -- | Extract the first component of a pair. fst :: (a, b) -> a -- | Extract the second component of a pair. snd :: (a, b) -> b -- | the identity morphism id :: forall (a :: k). Category cat => cat a a -- | 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. -- --
-- >>> maybe False odd (Just 3) -- True ---- --
-- >>> maybe False odd Nothing -- False ---- -- 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 -- "" --maybe :: b -> (a -> b) -> Maybe a -> b -- | Case analysis for the Either type. If the value is -- Left a, apply the first function to a; if it -- is Right b, apply the second function to b. -- --
-- >>> let s = Left "foo" :: Either String Int -- -- >>> let n = Right 3 :: Either String Int -- -- >>> either length (*2) s -- 3 -- -- >>> either length (*2) n -- 6 --either :: (a -> c) -> (b -> c) -> Either a b -> c -- | flip f takes its (first) two arguments in the reverse -- order of f. -- --
-- >>> flip (++) "hello" "world" -- "worldhello" --flip :: (a -> b -> c) -> b -> a -> c -- | 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] --const :: a -> b -> a -- | stop execution and displays an error message error :: forall (r :: RuntimeRep). forall (a :: TYPE r). HasCallStack => String -> a -- | and returns the conjunction of a container of Bools. For the -- result to be True, the container must be finite; False, -- however, results from a False value finitely far from the left -- end. and :: Foldable t => t Bool -> Bool -- | A special case of error. It is expected that compilers will -- recognize this and insert error messages which are more appropriate to -- the context in which undefined appears. undefined :: forall (r :: RuntimeRep) (a :: TYPE r). HasCallStack => a -- | 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. seq :: forall (r :: RuntimeRep) a (b :: TYPE r). a -> b -> b infixr 0 `seq` -- | Conversion of values to readable Strings. -- -- Derived instances of Show have the following properties, which -- are compatible with derived instances of Read: -- --
-- 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 = 5 ---- -- Note that right-associativity of :^: is ignored. For example, -- --
-- enumFrom x = enumFromTo x maxBound -- enumFromThen x y = enumFromThenTo x y bound -- where -- bound | fromEnum y >= fromEnum x = maxBound -- | otherwise = minBound --class Enum a -- | the successor of a value. For numeric types, succ adds 1. succ :: Enum a => a -> a -- | the predecessor of a value. For numeric types, pred subtracts -- 1. pred :: Enum a => a -> a -- | Convert from an Int. toEnum :: Enum a => Int -> a -- | 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. fromEnum :: Enum a => a -> 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 4 6 :: [Integer] = [4,6,8,10...]
enumFromThen 6 2 :: [Int] = [6,2,-2,-6,...,minBound :: -- Int]
enumFromTo 6 10 :: [Int] = [6,7,8,9,10]
enumFromTo 42 1 :: [Integer] = []
enumFromThenTo 4 2 -6 :: [Integer] = -- [4,2,0,-2,-4,-6]
enumFromThenTo 6 8 2 :: [Int] = []
-- do a <- as -- pure (f a) ---- -- with an inferred Functor constraint. fmap :: Functor f => (a -> b) -> f a -> f b -- | Replace all locations in the input with the same value. The default -- definition is fmap . const, but this may be -- overridden with a more efficient version. -- -- Using ApplicativeDo: 'a <$ bs' can be -- understood as the do expression -- --
-- do bs -- pure a ---- -- with an inferred Functor constraint. (<$) :: Functor f => a -> f b -> f a infixl 4 <$ -- | A functor with application, providing operations to -- --
-- (<*>) = liftA2 id ---- --
-- liftA2 f x y = f <$> x <*> y ---- -- Further, any definition must satisfy the following: -- --
pure id <*> v = -- v
pure (.) <*> u -- <*> v <*> w = u <*> (v -- <*> w)
pure f <*> -- pure x = pure (f x)
u <*> pure y = -- pure ($ y) <*> u
-- forall x y. p (q x y) = f x . g y ---- -- it follows from the above that -- --
-- liftA2 p (liftA2 q u v) = liftA2 f u . liftA2 g v ---- -- If f is also a Monad, it should satisfy -- -- -- -- (which implies that pure and <*> satisfy the -- applicative functor laws). class Functor f => Applicative (f :: Type -> Type) -- | Lift a value. pure :: Applicative f => a -> f a -- | Sequential application. -- -- A few functors support an implementation of <*> that is -- more efficient than the default one. -- -- Using ApplicativeDo: 'fs <*> as' can be -- understood as the do expression -- --
-- do f <- fs -- a <- as -- pure (f a) --(<*>) :: Applicative f => f (a -> b) -> f a -> f b -- | Lift a binary function to actions. -- -- Some functors support an implementation of liftA2 that is more -- efficient than the default one. In particular, if fmap is an -- expensive operation, it is likely better to use liftA2 than to -- fmap over the structure and then use <*>. -- -- This became a typeclass method in 4.10.0.0. Prior to that, it was a -- function defined in terms of <*> and fmap. -- -- Using ApplicativeDo: 'liftA2 f as bs' can be -- understood as the do expression -- --
-- do a <- as -- b <- bs -- pure (f a b) --liftA2 :: Applicative f => (a -> b -> c) -> f a -> f b -> f c -- | Sequence actions, discarding the value of the first argument. -- -- 'as *> bs' can be understood as the do -- expression -- --
-- do as -- bs ---- -- This is a tad complicated for our ApplicativeDo extension -- which will give it a Monad constraint. For an -- Applicative constraint we write it of the form -- --
-- do _ <- as -- b <- bs -- pure b --(*>) :: Applicative f => f a -> f b -> f b -- | Sequence actions, discarding the value of the second argument. -- -- Using ApplicativeDo: 'as <* bs' can be -- understood as the do expression -- --
-- do a <- as -- bs -- pure a --(<*) :: Applicative f => f a -> f b -> f a infixl 4 <*> infixl 4 *> infixl 4 <* -- | 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: -- --
-- do a <- as -- bs a --(>>=) :: Monad m => m a -> (a -> m b) -> m b -- | Sequentially compose two actions, discarding any value produced by the -- first, like sequencing operators (such as the semicolon) in imperative -- languages. -- -- 'as >> bs' can be understood as the do -- expression -- --
-- do as -- bs --(>>) :: Monad m => m a -> m b -> m b -- | Inject a value into the monadic type. return :: Monad m => a -> m a infixl 1 >>= infixl 1 >> -- | Conditional execution of Applicative expressions. For example, -- --
-- when debug (putStrLn "Debugging") ---- -- will output the string Debugging if the Boolean value -- debug is True, and otherwise do nothing. when :: Applicative f => Bool -> f () -> f () -- | The reverse of when. unless :: Applicative f => Bool -> f () -> f () -- | The Maybe type encapsulates an optional value. A value of type -- Maybe a either contains a value of type a -- (represented as Just a), or it is empty (represented -- as Nothing). 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. data Maybe a Nothing :: Maybe a Just :: a -> Maybe a data Ordering LT :: Ordering EQ :: Ordering GT :: Ordering data Bool False :: Bool True :: Bool -- | 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. data Int -- | Arbitrary precision integers. In contrast with fixed-size integral -- types such as Int, the Integer type represents the -- entire infinite range of integers. -- -- For more information about this type's representation, see the -- comments in its implementation. data Integer -- | Type representing arbitrary-precision non-negative integers. -- --
-- >>> 2^100 :: Natural -- 1267650600228229401496703205376 ---- -- Operations whose result would be negative throw -- (Underflow :: ArithException), -- --
-- >>> -1 :: Natural -- *** Exception: arithmetic underflow --data Natural -- | Offset in a data structure consisting of elements of type ty. -- -- Int is a terrible backing type which is hard to get away from, -- considering that GHC/Haskell are mostly using this for offset. Trying -- to bring some sanity by a lightweight wrapping. data Offset ty -- | CountOf of a data structure. -- -- More specifically, it represents the number of elements of type -- ty that fit into the data structure. -- --
-- >>> length (fromList ['a', 'b', 'c', '🌟']) :: CountOf Char -- CountOf 4 ---- -- Same caveats as Offset apply here. data CountOf ty -- | 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). data Char -- | Represent the accessor for types that can be stored in the UArray and -- MUArray. -- -- Types need to be a instance of storable and have fixed sized. class Eq ty => PrimType ty -- | ASCII value between 0x0 and 0x7f data Char7 -- | Opaque packed array of characters in the ASCII encoding data AsciiString -- | Opaque packed array of characters in the UTF8 encoding data String -- | An array of type built on top of GHC primitive. -- -- The elements need to have fixed sized and the representation is a -- packed contiguous array in memory that can easily be passed to foreign -- interface data UArray ty -- | Array of a data Array a -- | Integral Literal support -- -- e.g. 123 :: Integer 123 :: Word8 class Integral a fromInteger :: Integral a => Integer -> a -- | Fractional Literal support -- -- e.g. 1.2 :: Double 0.03 :: Float class Fractional a fromRational :: Fractional a => Rational -> a -- | Negation support -- -- e.g. -(f x) class HasNegation a negate :: HasNegation a => a -> a -- | 8-bit signed integer type data Int8 -- | 16-bit signed integer type data Int16 -- | 32-bit signed integer type data Int32 -- | 64-bit signed integer type data Int64 -- | 8-bit unsigned integer type data Word8 -- | 16-bit unsigned integer type data Word16 -- | 32-bit unsigned integer type data Word32 -- | 64-bit unsigned integer type data Word64 -- | A Word is an unsigned integral type, with the same size as -- Int. data Word -- | 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. data Double -- | 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. data Float -- | A value of type IO a is a computation which, when -- performed, does some I/O before returning a value of type a. -- -- 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. data IO a -- | IEEE754 Floating point Binary32, simple precision (Also known as -- Float) type FP32 = Float -- | IEEE754 Floating point Binary64, double precision (Also known as -- Double) type FP64 = Double -- | The IsList class and its methods are intended to be used in -- conjunction with the OverloadedLists extension. class IsList l where { -- | The Item type function returns the type of items of the -- structure l. type family Item l; } -- | The fromList function constructs the structure l from -- the given list of Item l fromList :: IsList l => [Item l] -> l -- | The fromListN function takes the input list's length as a hint. -- Its behaviour should be equivalent to fromList. The hint can be -- used to construct the structure l more efficiently compared -- to fromList. If the given hint does not equal to the input -- list's length the behaviour of fromListN is not specified. fromListN :: IsList l => Int -> [Item l] -> l -- | The toList function extracts a list of Item l from the -- structure l. It should satisfy fromList . toList = id. toList :: IsList l => l -> [Item l] -- | Class for string-like datastructures; used by the overloaded string -- extension (-XOverloadedStrings in GHC). class IsString a fromString :: IsString a => String -> a -- | Representable types of kind *. This class is derivable in GHC -- with the DeriveGeneric flag on. -- -- A Generic instance must satisfy the following laws: -- --
-- from . to ≡ id -- to . from ≡ id --class Generic a where { -- | Generic representation type type family Rep a :: Type -> Type; } -- | Convert from the datatype to its representation from :: Generic a => a -> Rep a x -- | Convert from the representation to the datatype to :: Generic a => Rep a x -> a -- | The Either type represents values with two possibilities: a -- value of type Either a b is either Left -- a or 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"). -- --
-- >>> let s = Left "foo" :: Either String Int -- -- >>> s -- Left "foo" -- -- >>> let n = Right 3 :: Either String Int -- -- >>> n -- Right 3 -- -- >>> :type s -- s :: Either String Int -- -- >>> :type n -- n :: 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) s -- Left "foo" -- -- >>> fmap (*2) n -- Right 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)
--
-- >>> :}
--
--
-- -- >>> parseMultiple -- Right 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)
--
-- >>> :}
--
--
-- -- >>> parseMultiple -- Left "parse error" --data Either a b Left :: a -> Either a b Right :: b -> Either a b -- | The Data class comprehends a fundamental primitive -- gfoldl for folding over constructor applications, say terms. -- This primitive can be instantiated in several ways to map over the -- immediate subterms of a term; see the gmap combinators later -- in this class. Indeed, a generic programmer does not necessarily need -- to use the ingenious gfoldl primitive but rather the intuitive -- gmap combinators. The gfoldl primitive is completed by -- means to query top-level constructors, to turn constructor -- representations into proper terms, and to list all possible datatype -- constructors. This completion allows us to serve generic programming -- scenarios like read, show, equality, term generation. -- -- The combinators gmapT, gmapQ, gmapM, etc are all -- provided with default definitions in terms of gfoldl, leaving -- open the opportunity to provide datatype-specific definitions. (The -- inclusion of the gmap combinators as members of class -- Data allows the programmer or the compiler to derive -- specialised, and maybe more efficient code per datatype. Note: -- gfoldl is more higher-order than the gmap combinators. -- This is subject to ongoing benchmarking experiments. It might turn out -- that the gmap combinators will be moved out of the class -- Data.) -- -- Conceptually, the definition of the gmap combinators in terms -- of the primitive gfoldl requires the identification of the -- gfoldl function arguments. Technically, we also need to -- identify the type constructor c for the construction of the -- result type from the folded term type. -- -- In the definition of gmapQx combinators, we use -- phantom type constructors for the c in the type of -- gfoldl because the result type of a query does not involve the -- (polymorphic) type of the term argument. In the definition of -- gmapQl we simply use the plain constant type constructor -- because gfoldl is left-associative anyway and so it is readily -- suited to fold a left-associative binary operation over the immediate -- subterms. In the definition of gmapQr, extra effort is needed. We use -- a higher-order accumulation trick to mediate between left-associative -- constructor application vs. right-associative binary operation (e.g., -- (:)). When the query is meant to compute a value of type -- r, then the result type withing generic folding is r -- -> r. So the result of folding is a function to which we -- finally pass the right unit. -- -- With the -XDeriveDataTypeable option, GHC can generate -- instances of the Data class automatically. For example, given -- the declaration -- --
-- data T a b = C1 a b | C2 deriving (Typeable, Data) ---- -- GHC will generate an instance that is equivalent to -- --
-- instance (Data a, Data b) => Data (T a b) where -- gfoldl k z (C1 a b) = z C1 `k` a `k` b -- gfoldl k z C2 = z C2 -- -- gunfold k z c = case constrIndex c of -- 1 -> k (k (z C1)) -- 2 -> z C2 -- -- toConstr (C1 _ _) = con_C1 -- toConstr C2 = con_C2 -- -- dataTypeOf _ = ty_T -- -- con_C1 = mkConstr ty_T "C1" [] Prefix -- con_C2 = mkConstr ty_T "C2" [] Prefix -- ty_T = mkDataType "Module.T" [con_C1, con_C2] ---- -- This is suitable for datatypes that are exported transparently. class Typeable a => Data a -- | Left-associative fold operation for constructor applications. -- -- The type of gfoldl is a headache, but operationally it is a -- simple generalisation of a list fold. -- -- The default definition for gfoldl is const -- id, which is suitable for abstract datatypes with no -- substructures. gfoldl :: Data a => (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. () => g -> c g) -> a -> c a -- | Unfolding constructor applications gunfold :: Data a => (forall b r. Data b => c (b -> r) -> c r) -> (forall r. () => r -> c r) -> Constr -> c a -- | Obtaining the constructor from a given datum. For proper terms, this -- is meant to be the top-level constructor. Primitive datatypes are here -- viewed as potentially infinite sets of values (i.e., constructors). toConstr :: Data a => a -> Constr -- | The outer type constructor of the type dataTypeOf :: Data a => a -> DataType -- | Mediate types and unary type constructors. -- -- In Data instances of the form -- --
-- instance (Data a, ...) => Data (T a) ---- -- dataCast1 should be defined as gcast1. -- -- The default definition is const Nothing, which -- is appropriate for instances of other forms. dataCast1 :: (Data a, Typeable t) => (forall d. Data d => c (t d)) -> Maybe (c a) -- | Mediate types and binary type constructors. -- -- In Data instances of the form -- --
-- instance (Data a, Data b, ...) => Data (T a b) ---- -- dataCast2 should be defined as gcast2. -- -- The default definition is const Nothing, which -- is appropriate for instances of other forms. dataCast2 :: (Data a, Typeable t) => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c a) -- | A generic transformation that maps over the immediate subterms -- -- The default definition instantiates the type constructor c in -- the type of gfoldl to an identity datatype constructor, using -- the isomorphism pair as injection and projection. gmapT :: Data a => (forall b. Data b => b -> b) -> a -> a -- | A generic query with a left-associative binary operator gmapQl :: Data a => (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> a -> r -- | A generic query with a right-associative binary operator gmapQr :: forall r r'. Data a => (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> a -> r -- | A generic query that processes the immediate subterms and returns a -- list of results. The list is given in the same order as originally -- specified in the declaration of the data constructors. gmapQ :: Data a => (forall d. Data d => d -> u) -> a -> [u] -- | A generic query that processes one child by index (zero-based) gmapQi :: Data a => Int -> (forall d. Data d => d -> u) -> a -> u -- | A generic monadic transformation that maps over the immediate subterms -- -- The default definition instantiates the type constructor c in -- the type of gfoldl to the monad datatype constructor, defining -- injection and projection using return and >>=. gmapM :: (Data a, Monad m) => (forall d. Data d => d -> m d) -> a -> m a -- | Transformation of at least one immediate subterm does not fail gmapMp :: (Data a, MonadPlus m) => (forall d. Data d => d -> m d) -> a -> m a -- | Transformation of one immediate subterm with success gmapMo :: (Data a, MonadPlus m) => (forall d. Data d => d -> m d) -> a -> m a -- | Constructs a non-representation for a non-representable type mkNoRepType :: String -> DataType -- | Representation of datatypes. A package of constructor representations -- with names of type and module. data DataType -- | The class Typeable allows a concrete representation of a type -- to be calculated. class Typeable (a :: k) -- | The class of monoids (types with an associative binary operation that -- has an identity). Instances should satisfy the following: -- --
-- >>> "Hello world" <> mempty -- "Hello world" --mempty :: Monoid a => a -- | An associative operation -- -- NOTE: This method is redundant and has the default -- implementation mappend = (<>) since -- base-4.11.0.0. Should it be implemented manually, since -- mappend is a synonym for (<>), it is expected that -- the two functions are defined the same way. In a future GHC release -- mappend will be removed from Monoid. mappend :: Monoid a => a -> a -> a -- | Fold a list using the monoid. -- -- For most types, the default definition for mconcat will be -- used, but the function is included in the class definition so that an -- optimized version can be provided for specific types. -- --
-- >>> mconcat ["Hello", " ", "Haskell", "!"] -- "Hello Haskell!" --mconcat :: Monoid a => [a] -> a -- | The class of semigroups (types with an associative binary operation). -- -- Instances should satisfy the following: -- -- class Semigroup a -- | An associative operation. -- --
-- >>> [1,2,3] <> [4,5,6] -- [1,2,3,4,5,6] --(<>) :: Semigroup a => a -> a -> a -- | Reduce a non-empty list with <> -- -- The default definition should be sufficient, but this can be -- overridden for efficiency. -- --
-- >>> import Data.List.NonEmpty -- -- >>> sconcat $ "Hello" :| [" ", "Haskell", "!"] -- "Hello Haskell!" --sconcat :: Semigroup a => NonEmpty a -> a -- | Repeat a value n times. -- -- Given that this works on a Semigroup it is allowed to fail if -- you request 0 or fewer repetitions, and the default definition will do -- so. -- -- By making this a member of the class, idempotent semigroups and -- monoids can upgrade this to execute in <math> by picking -- stimes = stimesIdempotent or stimes = -- stimesIdempotentMonoid respectively. -- --
-- >>> stimes 4 [1] -- [1,1,1,1] --stimes :: (Semigroup a, Integral b) => b -> a -> a infixr 6 <> -- | Any type that you wish to throw or catch as an exception must be an -- instance of the Exception class. The simplest case is a new -- exception type directly below the root: -- --
-- data MyException = ThisException | ThatException -- deriving Show -- -- instance Exception MyException ---- -- The default method definitions in the Exception class do what -- we need in this case. You can now throw and catch -- ThisException and ThatException as exceptions: -- --
-- *Main> throw ThisException `catch` \e -> putStrLn ("Caught " ++ show (e :: MyException))
-- Caught ThisException
--
--
-- In more complicated examples, you may wish to define a whole hierarchy
-- of exceptions:
--
-- -- --------------------------------------------------------------------- -- -- Make the root exception type for all the exceptions in a compiler -- -- data SomeCompilerException = forall e . Exception e => SomeCompilerException e -- -- instance Show SomeCompilerException where -- show (SomeCompilerException e) = show e -- -- instance Exception SomeCompilerException -- -- compilerExceptionToException :: Exception e => e -> SomeException -- compilerExceptionToException = toException . SomeCompilerException -- -- compilerExceptionFromException :: Exception e => SomeException -> Maybe e -- compilerExceptionFromException x = do -- SomeCompilerException a <- fromException x -- cast a -- -- --------------------------------------------------------------------- -- -- Make a subhierarchy for exceptions in the frontend of the compiler -- -- data SomeFrontendException = forall e . Exception e => SomeFrontendException e -- -- instance Show SomeFrontendException where -- show (SomeFrontendException e) = show e -- -- instance Exception SomeFrontendException where -- toException = compilerExceptionToException -- fromException = compilerExceptionFromException -- -- frontendExceptionToException :: Exception e => e -> SomeException -- frontendExceptionToException = toException . SomeFrontendException -- -- frontendExceptionFromException :: Exception e => SomeException -> Maybe e -- frontendExceptionFromException x = do -- SomeFrontendException a <- fromException x -- cast a -- -- --------------------------------------------------------------------- -- -- Make an exception type for a particular frontend compiler exception -- -- data MismatchedParentheses = MismatchedParentheses -- deriving Show -- -- instance Exception MismatchedParentheses where -- toException = frontendExceptionToException -- fromException = frontendExceptionFromException ---- -- We can now catch a MismatchedParentheses exception as -- MismatchedParentheses, SomeFrontendException or -- SomeCompilerException, but not other types, e.g. -- IOException: -- --
-- *Main> throw MismatchedParentheses `catch` \e -> putStrLn ("Caught " ++ show (e :: MismatchedParentheses))
-- Caught MismatchedParentheses
-- *Main> throw MismatchedParentheses `catch` \e -> putStrLn ("Caught " ++ show (e :: SomeFrontendException))
-- Caught MismatchedParentheses
-- *Main> throw MismatchedParentheses `catch` \e -> putStrLn ("Caught " ++ show (e :: SomeCompilerException))
-- Caught MismatchedParentheses
-- *Main> throw MismatchedParentheses `catch` \e -> putStrLn ("Caught " ++ show (e :: IOException))
-- *** Exception: MismatchedParentheses
--
class (Typeable e, Show e) => Exception e
-- | Throw an exception. Exceptions may be thrown from purely functional
-- code, but may only be caught within the IO monad.
throw :: forall (r :: RuntimeRep) (a :: TYPE r) e. Exception e => e -> a
-- | A variant of throw that can only be used within the IO
-- monad.
--
-- Although throwIO has a type that is an instance of the type of
-- throw, the two functions are subtly different:
--
-- -- throw e `seq` x ===> throw e -- throwIO e `seq` x ===> x ---- -- The first example will cause the exception e to be raised, -- whereas the second one won't. In fact, throwIO will only cause -- an exception to be raised when it is used within the IO monad. -- The throwIO variant should be used in preference to -- throw to raise an exception within the IO monad because -- it guarantees ordering with respect to other IO operations, -- whereas throw does not. throwIO :: Exception e => e -> IO a -- | A value of type Ptr a represents a pointer to an -- object, or an array of objects, which may be marshalled to or from -- Haskell values of type a. -- -- The type a will often be an instance of class Storable -- which provides the marshalling operations. However this is not -- essential, and you can provide your own operations to access the -- pointer. For example you might write small foreign functions to get or -- set the fields of a C struct. data Ptr a Ptr :: Addr# -> Ptr a -- | for support of if .. then .. else ifThenElse :: Bool -> a -> a -> a module Basement.Environment -- | Returns a list of the program's command line arguments (not including -- the program name). getArgs :: IO [String] -- | Lookup variable in the environment lookupEnv :: String -> IO (Maybe String) -- | A String type backed by a UTF8 encoded byte array and all the -- necessary functions to manipulate the string. -- -- You can think of String as a specialization of a byte array that have -- element of type Char. -- -- The String data must contain UTF8 valid data. module Basement.String -- | Opaque packed array of characters in the UTF8 encoding newtype String String :: UArray Word8 -> String -- | Mutable String Buffer. -- -- Use as an *append* buffer, as UTF8 variable encoding doesn't really -- allow to change previously written character without potentially -- shifting bytes. newtype MutableString st MutableString :: MUArray Word8 st -> MutableString st -- | Unsafely create a string of up to sz bytes. -- -- The callback f needs to return the number of bytes filled in -- the underlaying bytes buffer. No check is made on the callback return -- values, and if it's not contained without the bounds, bad things will -- happen. create :: PrimMonad prim => CountOf Word8 -> (MutableString (PrimState prim) -> prim (Offset Word8)) -> prim String -- | Replicate a character c n times to create a string -- of length n replicate :: CountOf Char -> Char -> String -- | Length of a String using CountOf -- -- this size is available in o(n) length :: String -> CountOf Char -- | Various String Encoding that can be use to convert to and from bytes data Encoding ASCII7 :: Encoding UTF8 :: Encoding UTF16 :: Encoding UTF32 :: Encoding ISO_8859_1 :: Encoding -- | Convert a ByteArray to a string assuming a specific encoding. -- -- It returns a 3-tuple of: -- --
-- splitOn (== ',') "," == ["",""] -- splitOn (== ',') ",abc," == ["","abc",""] -- splitOn (== ':') "abc" == ["abc"] -- splitOn (== ':') "abc::def" == ["abc","","def"] -- splitOn (== ':') "::abc::def" == ["","","abc","","def"] --splitOn :: (Char -> Bool) -> String -> [String] -- | Internal call to make a substring given offset in bytes. -- -- This is unsafe considering that one can create a substring starting -- and/or ending on the middle of a UTF8 sequence. sub :: String -> Offset8 -> Offset8 -> String -- | Return whereas the string contains a specific character or not elem :: Char -> String -> Bool -- | Finds where are the insertion points when we search for a -- needle within an haystack. indices :: String -> String -> [Offset8] -- | Intersperse the character sep between each character in the -- string -- --
-- intersperse ' ' "Hello Foundation" ---- -- "H e l l o F o u n d a t i o n" intersperse :: Char -> String -> String -- | Apply a predicate to the string to return the longest prefix -- that satisfy the predicate and the remaining span :: (Char -> Bool) -> String -> (String, String) -- | Apply a predicate to the string to return the longest suffix -- that satisfy the predicate and the remaining spanEnd :: (Char -> Bool) -> String -> (String, String) -- | Break a string into 2 strings at the location where the predicate -- return True break :: (Char -> Bool) -> String -> (String, String) breakEnd :: (Char -> Bool) -> String -> (String, String) -- | Break a string into 2 strings at the first occurence of the character breakElem :: Char -> String -> (String, String) -- | Same as break but cut on a line feed with an optional carriage return. -- -- This is the same operation as 'breakElem LF' dropping the last -- character of the string if it's a CR. -- -- Also for efficiency reason (streaming), it returns if the last -- character was a CR character. breakLine :: String -> Either Bool (String, String) -- | Drop character from the beginning while the predicate is true dropWhile :: (Char -> Bool) -> String -> String -- | Create a single element String singleton :: Char -> String -- | Monomorphically map the character in a string and return the -- transformed one charMap :: (Char -> Char) -> String -> String -- | Append a Char to the end of the String and return this new String snoc :: String -> Char -> String -- | Prepend a Char to the beginning of the String and return this new -- String cons :: Char -> String -> String -- | Extract the String stripped of the last character and the last -- character if not empty -- -- If empty, Nothing is returned unsnoc :: String -> Maybe (String, Char) -- | Extract the First character of a string, and the String stripped of -- the first character. -- -- If empty, Nothing is returned uncons :: String -> Maybe (Char, String) -- | Look for a predicate in the String and return the matched character, -- if any. find :: (Char -> Bool) -> String -> Maybe Char -- | Return the index in unit of Char of the first occurence of the -- predicate returning True -- -- If not found, Nothing is returned findIndex :: (Char -> Bool) -> String -> Maybe (Offset Char) -- | Sort the character in a String using a specific sort function -- -- TODO: optimise not going through a list sortBy :: (Char -> Char -> Ordering) -> String -> String -- | Filter characters of a string using the predicate filter :: (Char -> Bool) -> String -> String -- | Reverse a string reverse :: String -> String -- | Replace all the occurrencies of needle with -- replacement in the haystack string. replace :: String -> String -> String -> String -- | Append a character to a String builder builderAppend :: PrimMonad state => Char -> Builder String MutableString Word8 state err () -- | Create a new String builder using chunks of sizeChunksI builderBuild :: PrimMonad m => Int -> Builder String MutableString Word8 m err () -> m (Either err String) builderBuild_ :: PrimMonad m => Int -> Builder String MutableString Word8 m () () -> m String readInteger :: String -> Maybe Integer -- | Read an Integer from a String -- -- Consume an optional minus sign and many digits until end of string. readIntegral :: (HasNegation i, IntegralUpsize Word8 i, Additive i, Multiplicative i, IsIntegral i) => String -> Maybe i -- | Read a Natural from a String -- -- Consume many digits until end of string. readNatural :: String -> Maybe Natural -- | Try to read a Double readDouble :: String -> Maybe Double -- | Try to read a floating number as a Rational -- -- Note that for safety reason, only exponent between -10000 and 10000 is -- allowed as otherwise DoS/OOM is very likely. if you don't want this -- behavior, switching to a scientific type (not provided yet) that -- represent the exponent separately is the advised solution. readRational :: String -> Maybe Rational -- | Read an Floating like number of the form: -- -- -- -- Call a function with: -- --
-- words "Hello Foundation" ---- --