Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. module GHC.Prim.PtrEq

    Comparing underlying pointers for equality. Use GHC.Exts from the base package instead of importing this module directly.

  2. reallyUnsafePtrEquality :: a -> a -> Int#

    ghc-prim GHC.Prim.PtrEq

    Compare the underlying pointers of two values for equality. Returns 1 if the pointers are equal and 0 otherwise. The two values must be of the same type, of kind Type. See also reallyUnsafePtrEquality#, which doesn't have such restrictions.

  3. unsafePtrEquality# :: forall (a :: UnliftedType) (b :: UnliftedType) . a -> b -> Int#

    ghc-prim GHC.Prim.PtrEq

    Compare the underlying pointers of two unlifted values for equality. This is less dangerous than reallyUnsafePtrEquality, since the arguments are guaranteed to be evaluated. This means there is no risk of accidentally comparing a thunk. It's however still more dangerous than e.g. sameArray#.

  4. reallyUnsafePtrEquality# :: a_levpoly -> b_levpoly -> Int#

    ghc-prim GHC.PrimopWrappers

    No documentation available.

  5. seq# :: a -> State# s -> (# State# s, a #)

    ghc-prim GHC.PrimopWrappers

    No documentation available.

  6. type PartialEscapeQuery = [PartialEscapeQueryItem]

    http-types Network.HTTP.Types

    Query with some characters that should not be escaped. General form: a=b&c=d:e+f&g=h

  7. type PartialEscapeQueryItem = (ByteString, [EscapeItem])

    http-types Network.HTTP.Types

    Partially escaped query item. The key will always be encoded using 'urlEncode True', but the value will be encoded depending on which EscapeItems are used.

  8. type RequestHeaders = [Header]

    http-types Network.HTTP.Types

    A list of Headers. Same type as ResponseHeaders, but useful to differentiate in type signatures.

  9. type SimpleQuery = [SimpleQueryItem]

    http-types Network.HTTP.Types

    A sequence of SimpleQueryItems.

  10. type SimpleQueryItem = (ByteString, ByteString)

    http-types Network.HTTP.Types

    Simplified query item type without support for parameter-less items.

Page 144 of many | Previous | Next