Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. read :: (Context a, PrimMonad s) => MMatrix (PrimState s) a -> (Int, Int) -> s a

    matrices Data.Matrix.Unboxed.Mutable

    No documentation available.

  2. read :: Transport -> Int -> IO ByteString

    mongoDB Database.MongoDB.Transport

    No documentation available.

  3. read :: Read a => String -> a

    prelude-compat Prelude2010

    The read function reads input from a string, which must be completely consumed by the input process. read fails with an error if the parse is unsuccessful, and it is therefore discouraged from being used in real applications. Use readMaybe or readEither for safe alternatives.

    >>> read "123" :: Int
    123
    
    >>> read "hello" :: Int
    *** Exception: Prelude.read: no parse
    

  4. read :: (HasCallStack, PrimMonad m, MVector v a) => v (PrimState m) a -> Int -> m a

    rebase Rebase.Data.Vector.Generic.Mutable

    No documentation available.

  5. read :: PrimMonad m => MVector (PrimState m) a -> Int -> m a

    rebase Rebase.Data.Vector.Mutable

    No documentation available.

  6. read :: (PrimMonad m, Prim a) => MVector (PrimState m) a -> Int -> m a

    rebase Rebase.Data.Vector.Primitive.Mutable

    No documentation available.

  7. read :: (PrimMonad m, Storable a) => MVector (PrimState m) a -> Int -> m a

    rebase Rebase.Data.Vector.Storable.Mutable

    No documentation available.

  8. read :: (PrimMonad m, Unbox a) => MVector (PrimState m) a -> Int -> m a

    rebase Rebase.Data.Vector.Unboxed.Mutable

    No documentation available.

  9. read :: Read a => String -> a

    rebase Rebase.Prelude

    The read function reads input from a string, which must be completely consumed by the input process. read fails with an error if the parse is unsuccessful, and it is therefore discouraged from being used in real applications. Use readMaybe or readEither for safe alternatives.

    >>> read "123" :: Int
    123
    
    >>> read "hello" :: Int
    *** Exception: Prelude.read: no parse
    

  10. read :: Read a => String -> a

    base-prelude BasePrelude

    The read function reads input from a string, which must be completely consumed by the input process. read fails with an error if the parse is unsuccessful, and it is therefore discouraged from being used in real applications. Use readMaybe or readEither for safe alternatives.

    >>> read "123" :: Int
    123
    
    >>> read "hello" :: Int
    *** Exception: Prelude.read: no parse
    

Page 6 of many | Previous | Next