Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. ReadingOrderContextDependent :: ReadingOrder

    xlsx Codec.Xlsx.Types.StyleSheet

    No documentation available.

  2. ReadingOrderLeftToRight :: ReadingOrder

    xlsx Codec.Xlsx.Types.StyleSheet

    No documentation available.

  3. ReadingOrderRightToLeft :: ReadingOrder

    xlsx Codec.Xlsx.Types.StyleSheet

    No documentation available.

  4. READ_ONLY :: StatusCode

    HaskellNet Network.HaskellNet.IMAP.Types

    No documentation available.

  5. READ_WRITE :: StatusCode

    HaskellNet Network.HaskellNet.IMAP.Types

    No documentation available.

  6. type ReadS a = String -> [(a, String)]

    LambdaHack Game.LambdaHack.Core.Prelude

    A parser for a type a, represented as a function that takes a String and returns a list of possible parses as (a,String) pairs. Note that this kind of backtracking parser is very inefficient; reading a large structure may be quite slow (cf ReadP).

  7. module Data.BEncode.Reader

    Reader monad and combinators for BEncoded data. This is intended to replace the older Data.BEncode.Parser module. Usage example:

    >>> :set -XOverloadedStrings
    
    >>> let bd = (BDict $ Map.fromList [("baz", BInt 1), ("foo", BString "bar")])
    
    >>> :{
    let bReader = do
    baz <- dict "baz" bint
    foo <- dict "foo" bstring
    shouldBeNothing <- optional $ dict "optionalKey" bint
    return (foo, baz, shouldBeNothing)
    in runBReader bReader bd
    :}
    Right ("bar",1,Nothing)
    

  8. newtype Reader r (e :: Effects)

    bluefin-internal Bluefin.Internal

    No documentation available.

  9. ReadMode :: IOMode

    bluefin-internal Bluefin.Internal.System.IO

    No documentation available.

  10. ReadWriteMode :: IOMode

    bluefin-internal Bluefin.Internal.System.IO

    No documentation available.

Page 405 of many | Previous | Next