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. data ForeignPtr a

    base GHC.ForeignPtr

    The type ForeignPtr represents references to objects that are maintained in a foreign language, i.e., that are not part of the data structures usually managed by the Haskell storage manager. The essential difference between ForeignPtrs and vanilla memory references of type Ptr a is that the former may be associated with finalizers. A finalizer is a routine that is invoked when the Haskell storage manager detects that - within the Haskell heap and stack - there are no more references left that are pointing to the ForeignPtr. Typically, the finalizer will, then, invoke routines in the foreign language that free the resources bound by the foreign object. The ForeignPtr is parameterised in the same way as Ptr. The type argument of ForeignPtr should normally be an instance of class Storable.

  2. ForeignPtr :: Addr# -> ForeignPtrContents -> ForeignPtr a

    base GHC.ForeignPtr

    No documentation available.

  3. data ForeignPtrContents

    base GHC.ForeignPtr

    Controls finalization of a ForeignPtr, that is, what should happen if the ForeignPtr becomes unreachable. Visually, these data constructors are appropriate in these scenarios:

    Memory backing pointer is
    GC-Managed   Unmanaged
    Finalizer functions are: +------------+-----------------+
    Allowed  | MallocPtr  | PlainForeignPtr |
    +------------+-----------------+
    Prohibited  | PlainPtr   | FinalPtr        |
    +------------+-----------------+
    

  4. Format :: GeneralCategory

    base GHC.Unicode

    Cf: Other, Format

  5. module Data.Text.Foreign

    Support for using Text data with native code via the Haskell foreign function interface.

  6. type Forest a = [Tree a]

    containers Data.Graph

    This type synonym exists primarily for historical reasons.

  7. type Forest a = [Tree a]

    containers Data.Tree

    This type synonym exists primarily for historical reasons.

  8. module Test.Hspec.Formatters

    Deprecated: Use Test.Hspec.Api.Formatters.V1 instead.

  9. module Data.Time.Format

    No documentation available.

  10. class FormatTime t

    time Data.Time.Format

    No documentation available.

Page 247 of many | Previous | Next