Hoogle Search

Within LTS Haskell 22.21 (ghc-9.6.5)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. getContents :: IO String

    base Prelude

    The getContents operation returns all user input as a single string, which is read lazily as it is needed (same as hGetContents stdin).

  2. getContents :: IO String

    base System.IO

    The getContents operation returns all user input as a single string, which is read lazily as it is needed (same as hGetContents stdin).

  3. getContents :: IO ByteString

    bytestring Data.ByteString

    getContents. Read stdin strictly. Equivalent to hGetContents stdin The Handle is closed after the contents have been read.

  4. getContents :: IO ByteString

    bytestring Data.ByteString.Char8

    getContents. Read stdin strictly. Equivalent to hGetContents stdin The Handle is closed after the contents have been read.

  5. getContents :: IO ByteString

    bytestring Data.ByteString.Lazy

    getContents. Equivalent to hGetContents stdin. Will read lazily

  6. getContents :: IO ByteString

    bytestring Data.ByteString.Lazy.Char8

    getContents. Equivalent to hGetContents stdin. Will read lazily

  7. getContents :: IO Text

    text Data.Text.IO

    Read all user input on stdin as a single string.

  8. getContents :: IO Text

    text Data.Text.Lazy.IO

    Lazily read all user input on stdin as a single string.

  9. getContents :: IO String

    amazonka-core Amazonka.Prelude

    The getContents operation returns all user input as a single string, which is read lazily as it is needed (same as hGetContents stdin).

  10. getContents :: Socket -> IO ByteString

    network Network.Socket.ByteString.Lazy

    Receive data from the socket. The socket must be in a connected state. Data is received on demand, in chunks; each chunk will be sized to reflect the amount of data received by individual recv calls. All remaining data from the socket is consumed. When there is no more data to be received, the receiving side of the socket is shut down. If there is an error and an exception is thrown, the socket is not shut down.

Page 1 of many | Next