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. unsafePtrEquality# :: forall (a :: UnliftedType) (b :: UnliftedType) . a -> b -> Int#

    base GHC.Exts

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

  2. InvalidSequence :: CodingProgress

    base GHC.IO.Encoding

    Stopped because there are sufficient free elements in the output to output at least one encoded ASCII character, but the input contains an invalid or unrepresentable sequence

  3. InvalidSequence :: CodingProgress

    base GHC.IO.Encoding.Types

    Stopped because there are sufficient free elements in the output to output at least one encoded ASCII character, but the input contains an invalid or unrepresentable sequence

  4. neqInteger :: Integer -> Integer -> Bool

    base GHC.Integer

    Used to implement (/=) for the Eq typeclass. Outputs True if two integers are not equal to each other.

    Example

    >>> 6 `neqInteger` 7
    True
    
    >>> 6 /= 7
    True
    

  5. neqInteger# :: Integer -> Integer -> Int#

    base GHC.Integer

    No documentation available.

  6. integerEq :: Integer -> Integer -> Bool

    base GHC.Num

    No documentation available.

  7. integerEq# :: Integer -> Integer -> Bool#

    base GHC.Num

    No documentation available.

  8. naturalEq :: Natural -> Natural -> Bool

    base GHC.Num

    No documentation available.

  9. naturalEq# :: Natural -> Natural -> Bool#

    base GHC.Num

    No documentation available.

  10. requestHeapCensus :: IO ()

    base GHC.Profiling

    Request a heap census on the next context switch. The census can be requested whether or not the heap profiling timer is running. Note: This won't do anything unless you also specify a profiling mode on the command line using the normal RTS options.

Page 137 of many | Previous | Next