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. type ReadS a = String -> [(a, String)]

    constrained-categories Control.Category.Constrained.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).

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

    constrained-categories Control.Category.Hask

    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).

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

    copilot-language Copilot.Language.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).

  4. data ReadWrite

    exomizer Exomizer.Mem

    Direction of reading (the compressed data) and writing (the uncompressed data)

    readDirection `ReadWrite` writeDirection
    

  5. ReadWrite :: Direction -> Direction -> ReadWrite

    exomizer Exomizer.Mem

    No documentation available.

  6. data ReadWrite

    exomizer Exomizer.Raw

    Direction of reading (the compressed data) and writing (the uncompressed data)

    readDirection `ReadWrite` writeDirection
    

  7. ReadWrite :: Direction -> Direction -> ReadWrite

    exomizer Exomizer.Raw

    No documentation available.

  8. ReadNone :: LlvmFuncAttr

    ghc-lib GHC.Llvm

    This attribute indicates that the function computes its result (or decides to unwind an exception) based strictly on its arguments, without dereferencing any pointer arguments or otherwise accessing any mutable state (e.g. memory, control registers, etc) visible to caller functions. It does not write through any pointer arguments (including byval arguments) and never changes any state visible to callers. This means that it cannot unwind exceptions by calling the C++ exception throwing methods, but could use the unwind instruction.

  9. ReadOnly :: LlvmFuncAttr

    ghc-lib GHC.Llvm

    This attribute indicates that the function does not write through any pointer arguments (including byval arguments) or otherwise modify any state (e.g. memory, control registers, etc) visible to caller functions. It may dereference pointer arguments and read state that may be set in the caller. A readonly function always returns the same value (or unwinds an exception identically) when called with the same set of arguments and global state. It cannot unwind an exception by calling the C++ exception throwing methods, but may use the unwind instruction.

  10. ReadNone :: LlvmFuncAttr

    ghc-lib GHC.Llvm.Types

    This attribute indicates that the function computes its result (or decides to unwind an exception) based strictly on its arguments, without dereferencing any pointer arguments or otherwise accessing any mutable state (e.g. memory, control registers, etc) visible to caller functions. It does not write through any pointer arguments (including byval arguments) and never changes any state visible to callers. This means that it cannot unwind exceptions by calling the C++ exception throwing methods, but could use the unwind instruction.

Page 425 of many | Previous | Next