Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
type
ReadS a = String -> [(a, String)]mixed-types-num Numeric.MixedTypes.PreludeHiding A parser for a type a, represented as a function that takes a String and returns a list of possible parses as (a,String) pairs. Note that this kind of backtracking parser is very inefficient; reading a large structure may be quite slow (cf ReadP).
-
mmap System.IO.MMap file is mapped read-only, file must exist
-
mmap System.IO.MMap file is mapped read-write, file must exist
-
mmap System.IO.MMap file is mapped read-write, if file does not exist it will be created with default permissions, region parameter specifies size, if file size is lower it will be extended with zeros
-
- Computation type: Computations which read values from a shared environment.
- Binding strategy: Monad values are functions from the environment to a value. The bound function is applied to the bound value, and both have access to the shared environment.
- Useful for: Maintaining variable bindings, or other shared environment.
- Zero and plus: None.
- Example type: Reader [(String,Value)] a
type
Reader r = ReaderT r Identitymonads-tf Control.Monad.Reader The parameterizable reader monad. Computations are functions of a shared environment. The return function ignores the environment, while m >>= k passes the inherited environment to both subcomputations:
newtype
ReaderT r (m :: Type -> Type) amonads-tf Control.Monad.Reader The reader monad transformer, which adds a read-only environment to the given monad. The return function ignores the environment, while m >>= k passes the inherited environment to both subcomputations:
ReaderT :: (r -> m a) -> ReaderT r (m :: Type -> Type) amonads-tf Control.Monad.Reader No documentation available.
ReadError :: Text -> String -> AddCellErrorsxlsx Codec.Xlsx.Parser.Stream Could not read current cell value
-
xlsx Codec.Xlsx.Types.StyleSheet Reading order See 18.8.1 "alignment (Alignment)" (p. 1754, esp. p. 1755)