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. isPrefixOf :: Eq a => [a] -> NonEmpty a -> Bool

    base Data.List.NonEmpty

    The isPrefixOf function returns True if the first argument is a prefix of the second.

  2. fixIO :: (a -> IO a) -> IO a

    base System.IO

    The implementation of mfix for IO. If the function passed to fixIO inspects its argument, the resulting action will throw FixIOException.

  3. unsafeFixIO :: (a -> IO a) -> IO a

    base System.IO.Unsafe

    A slightly faster version of fixIO that may not be safe to use with multiple threads. The unsafety arises when used like this:

    unsafeFixIO $ \r -> do
    forkIO (print r)
    return (...)
    
    In this case, the child thread will receive a NonTermination exception instead of waiting for the value of r to be computed.

  4. numberToFixed :: Integer -> Number -> Maybe (Integer, Integer)

    base Text.Read.Lex

    No documentation available.

  5. compactFixupPointers# :: Addr# -> Addr# -> State# RealWorld -> (# State# RealWorld, Compact#, Addr# #)

    base GHC.Base

    Given the pointer to the first block of a CNF and the address of the root object in the old address space, fix up the internal pointers inside the CNF to account for a different position in memory than when it was serialized. This method must be called exactly once after importing a serialized CNF. It returns the new CNF and the new adjusted root address.

  6. compactFixupPointers# :: Addr# -> Addr# -> State# RealWorld -> (# State# RealWorld, Compact#, Addr# #)

    base GHC.Exts

    Given the pointer to the first block of a CNF and the address of the root object in the old address space, fix up the internal pointers inside the CNF to account for a different position in memory than when it was serialized. This method must be called exactly once after importing a serialized CNF. It returns the new CNF and the new adjusted root address.

  7. FFFixed :: FFFormat

    base GHC.Float

    No documentation available.

  8. floatRadix :: RealFloat a => a -> Integer

    base GHC.Float

    a constant function, returning the radix of the representation (often 2)

  9. data Fixity

    base GHC.Generics

    Datatype to represent the fixity of a constructor. An infix | declaration directly corresponds to an application of Infix.

  10. data FixityI

    base GHC.Generics

    This variant of Fixity appears at the type level.

Page 23 of many | Previous | Next