Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. readInputStream :: Serializable a => InputStream a -> Process a

    distributed-process-extras Control.Distributed.Process.Extras.Internal.Unsafe

    Read from an InputStream. This is a blocking operation.

  2. readAtom :: Element -> Maybe Feed

    feed Text.Feed.Import

    'readAtom elt' tries to derive an Atom feed document from the XML element e.

  3. readRSS1 :: Element -> Maybe Feed

    feed Text.Feed.Import

    'readRSS1 elt' tries to derive an RSS1.0 feed document from the XML element e.

  4. readRSS2 :: Element -> Maybe Feed

    feed Text.Feed.Import

    'readRSS2 elt' tries to derive an RSS2.x, RSS-0.9x feed document from the XML element e.

  5. readBool :: Text -> Maybe Bool

    feed Text.RSS.Import

    No documentation available.

  6. readInt :: Text -> Maybe Integer

    feed Text.RSS.Import

    No documentation available.

  7. readFile :: FilePath -> IO (UArray Word8)

    foundation Foundation.IO

    Read a binary file and return the whole content in one contiguous buffer.

  8. readDouble :: String -> Maybe Double

    foundation Foundation.String.Read

    Try to read a Double

  9. readFloatingExact :: String -> ReadFloatingCallback a -> Maybe a

    foundation Foundation.String.Read

    Read an Floating like number of the form:

    Call a function with:
    • A boolean representing if the number is negative
    • The digits part represented as a single natural number (123.456 is represented as 123456)
    • The number of digits in the fractional part (e.g. 123.456 => 3)
    • The exponent if any
    The code is structured as a simple state machine that:
    • Optionally Consume a - sign
    • Consume number for the integral part
    • Optionally
    • Consume .
    • Consume remaining digits if not already end of string
    • Optionally Consume a e or E follow by an optional - and a number

  10. readInteger :: String -> Maybe Integer

    foundation Foundation.String.Read

    No documentation available.

Page 222 of many | Previous | Next