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 :: (PrimMonad m, MVector v a) => v (PrimState m) a -> Int -> m a

    fixed-vector Data.Vector.Fixed.Mutable

    Read value at index with bound checks.

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

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    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
    

  3. read :: PrimMonad m => NonEmptyMVector (PrimState m) a -> Int -> m a

    nonempty-vector Data.Vector.NonEmpty.Mutable

    Yield the element at the given position.

  4. read :: Buffer -> IO (Maybe ByteString)

    pdf-toolbox-core Pdf.Core.IO.Buffer

    No documentation available.

  5. read :: MonadIO m => Ref a -> m a

    reactive-banana Reactive.Banana.Prim.Low.Ref

    No documentation available.

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

    LambdaHack Game.LambdaHack.Core.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
    

  7. read :: SampleFmt y => Handle y -> Ptr y -> Size -> IO Size

    alsa-pcm Sound.ALSA.PCM.Node.File

    This expects pad bytes that are needed in memory in order to satisfy aligment constraints. This is only a problem for samples sizes like 24 bit.

  8. read :: Data -> ALU Value

    sbv Documentation.SBV.Examples.Puzzles.AOC_2021_24

    Reading a value. For a register, we simply look it up in the environment. For an immediate, we simply return it.

  9. read :: forall (m :: Type -> Type) a . (Monad m, Unbox a) => Array a -> Stream m a

    streamly-core Streamly.Data.Array

    Convert an Array into a stream. Pre-release

  10. read :: forall (m :: Type -> Type) a . Monad m => Array a -> Stream m a

    streamly-core Streamly.Data.Array.Generic

    No documentation available.

Page 7 of many | Previous | Next