Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. readList :: Read a => ReadS [a]

    prelude-compat Prelude2010

    The method readList is provided to allow the programmer to give a specialised way of parsing lists of values. For example, this is used by the predefined Read instance of the Char type, where values of type String are expected to use double quotes, rather than square brackets.

  2. readLn :: Read a => IO a

    prelude-compat Prelude2010

    The readLn function combines getLine and readIO.

  3. readParen :: Bool -> ReadS a -> ReadS a

    prelude-compat Prelude2010

    readParen True p parses what p parses, but surrounded with parentheses. readParen False p parses what p parses, but optionally surrounded with parentheses.

  4. reads :: Read a => ReadS a

    prelude-compat Prelude2010

    equivalent to readsPrec with a precedence of 0.

  5. readsPrec :: Read a => Int -> ReadS a

    prelude-compat Prelude2010

    attempts to parse a value from the front of the string, returning a list of (parsed value, remaining string) pairs. If there is no successful parse, the returned list is empty. Derived instances of Read and Show satisfy the following:

    That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.

  6. readPrec :: (Vector v a, Read a) => ReadPrec (v a)

    rebase Rebase.Data.Vector.Generic

    No documentation available.

  7. readMaybe :: (PrimMonad m, MVector v a) => v (PrimState m) a -> Int -> m (Maybe a)

    rebase Rebase.Data.Vector.Generic.Mutable

    No documentation available.

  8. readMaybe :: PrimMonad m => MVector (PrimState m) a -> Int -> m (Maybe a)

    rebase Rebase.Data.Vector.Mutable

    No documentation available.

  9. readMaybe :: (PrimMonad m, Prim a) => MVector (PrimState m) a -> Int -> m (Maybe a)

    rebase Rebase.Data.Vector.Primitive.Mutable

    No documentation available.

  10. readMaybe :: (PrimMonad m, Storable a) => MVector (PrimState m) a -> Int -> m (Maybe a)

    rebase Rebase.Data.Vector.Storable.Mutable

    No documentation available.

Page 225 of many | Previous | Next