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.
-
ekg-core System.Metrics.Gauge Get the current value of the gauge.
-
ekg-core System.Metrics.Label Get the current value of the label.
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.
-
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
read :: RawIO a => a -> Ptr Word8 -> Word64 -> Int -> IO Intghc-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.
-
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
read :: forall (m :: MutabilityType Type) . Int -> SomeJSArray m -> JSM JSValjsaddle JavaScript.Array No documentation available.
read :: forall (m :: MutabilityType Type) . Int -> SomeJSArray m -> JSM JSValjsaddle JavaScript.Array.Internal No documentation available.
-
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
-
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