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 :: Gauge -> IO Int64

    ekg-core System.Metrics.Gauge

    Get the current value of the gauge.

  2. read :: Label -> IO Text

    ekg-core System.Metrics.Label

    Get the current value of the label.

  3. read :: (Manifest r e, Index ix, PrimMonad m) => MArray (PrimState m) r ix e -> ix -> m (Maybe e)

    massiv Data.Massiv.Array.Mutable

    O(1) - Lookup an element in the mutable array. Returns Nothing when index is out of bounds.

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

    protolude Protolude.Partial

    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
    

  5. read :: RawIO a => a -> Ptr Word8 -> Word64 -> Int -> IO Int

    ghc-internal GHC.Internal.IO.Device

    Read up to the specified number of bytes starting from a specified offset, returning the number of bytes actually read. This function should only block if there is no data available. If there is not enough data available, then the function should just return the available data. A return value of zero indicates that the end of the data stream (e.g. end of file) has been reached.

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

    ghc-internal GHC.Internal.Text.Read

    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 :: forall (m :: MutabilityType Type) . Int -> SomeJSArray m -> JSM JSVal

    jsaddle JavaScript.Array

    No documentation available.

  8. read :: forall (m :: MutabilityType Type) . Int -> SomeJSArray m -> JSM JSVal

    jsaddle JavaScript.Array.Internal

    No documentation available.

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

    numeric-prelude NumericPrelude

    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

    numeric-prelude NumericPrelude.Base

    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 4 of many | Previous | Next