Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readPushMessage :: Resp -> Result PushMessageredis-resp Data.Redis.Command No documentation available.
readScan :: FromByteString a => String -> Resp -> Result (Cursor, [a])redis-resp Data.Redis.Command No documentation available.
readScoreList :: FromByteString a => String -> Bool -> Resp -> Result (ScoreList a)redis-resp Data.Redis.Command No documentation available.
readTTL :: String -> Resp -> Result (Maybe TTL)redis-resp Data.Redis.Command No documentation available.
readType :: String -> Resp -> Result (Maybe RedisType)redis-resp Data.Redis.Command No documentation available.
readRef :: MonadRef r m => r a -> m aref-fd Control.Monad.Ref Read the value of a reference
readImageFromBMP :: FilePath -> IO (Either Error (Array U DIM2 (Word8, Word8, Word8)))repa-io Data.Array.Repa.IO.BMP Read RGB components from a BMP file.
-
repa-io Data.Array.Repa.IO.Binary Read an array from a file. Data appears in host byte order. If the file size does match the provided shape then error.
readMatrixFromTextFile :: (Num e, Read e, Unbox e) => FilePath -> IO (Array U DIM2 e)repa-io Data.Array.Repa.IO.Matrix Read a matrix from a text file.
- WARNING: This is implemented fairly naively, just using Strings under the covers. It will be slow for large data files.
- It also doesn't do graceful error handling. If the file has the wrong format you'll get a confusing error.
readVectorFromTextFile :: (Num e, Read e, Unbox e) => FilePath -> IO (Array U DIM1 e)repa-io Data.Array.Repa.IO.Vector Read a vector from a text file.
- WARNING: This is implemented fairly naively, just using Strings under the covers. It will be slow for large data files.
- It also doesn't do graceful error handling. If the file has the wrong format you'll get a confusing error.