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.

  1. readOp :: Word8 -> ByteString -> Maybe Opcode

    evm-opcodes EVM.Opcode

    Parse an Opcode from a Word8. In case of PUSH instructions, read the constant being pushed from a subsequent ByteString.

  2. readPUSH :: Word8 -> ByteString -> Maybe Opcode

    evm-opcodes EVM.Opcode

    Read a PUSH opcode safely.

  3. readSWAP :: Word8 -> Maybe Opcode

    evm-opcodes EVM.Opcode

    Read a SWAP opcode (SWAP1 -- SWAP16) safely.

  4. readNumber :: TestSequence a Int

    expiring-cache-map Caching.ExpiringCacheMap.Utils.TestSequence

    No documentation available.

  5. readTestSVar :: TestSVar a -> TestSequence a a

    expiring-cache-map Caching.ExpiringCacheMap.Utils.TestSequence

    No documentation available.

  6. readPath :: (MonadThrow m, MonadFileSystem contents m) => FilePath -> m contents

    fakefs Test.FileSystem.Fake

    No documentation available.

  7. readFile :: FilePath -> IO String

    faktory Faktory.Prelude

    The readFile function reads a file and returns the contents of the file as a string. The file is read lazily, on demand, as with getContents.

  8. readIO :: Read a => String -> IO a

    faktory Faktory.Prelude

    The readIO function is similar to read except that it signals parse failure to the IO monad instead of terminating the program.

  9. readList :: Read a => ReadS [a]

    faktory Faktory.Prelude

    The method readList is provided to allow the programmer to give a specialised way of parsing lists of values. For example, this is used by the predefined Read instance of the Char type, where values of type String are expected to use double quotes, rather than square brackets.

  10. readLn :: Read a => IO a

    faktory Faktory.Prelude

    The readLn function combines getLine and readIO.

Page 308 of many | Previous | Next