Hoogle Search

Within Stackage Nightly 2025-10-08 (ghc-9.12.2)

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

  1. type family Subset (r1 :: Row k) (r2 :: Row k)

    row-types Data.Row.Variants

    Is the first row a subset of the second? Or, does the second row contain every binding that the first one does?

  2. variationsSetAxis :: FontDescriptionAxis a => a -> Variations -> Variations

    simple-pango Data.Font.VariationAxis

    No documentation available.

  3. variationsSetAxis :: FontDescriptionAxis a => a -> Variations -> Variations

    simple-pango Data.Font.VariationAxis.Internal

    No documentation available.

  4. type Offset = Int

    store-core Data.Store.Core

    How far into the given Ptr to look

  5. toIntSet :: forall (m :: Type -> Type) . Monad m => Fold m Int IntSet

    streamly-core Streamly.Data.Fold

    Fold the input to an int set. For integer inputs this performs better than toSet. Definition:

    >>> toIntSet = Fold.foldl' (flip IntSet.insert) IntSet.empty
    

  6. toSet :: forall (m :: Type -> Type) a . (Monad m, Ord a) => Fold m a (Set a)

    streamly-core Streamly.Data.Fold

    Fold the input to a set. Definition:

    >>> toSet = Fold.foldl' (flip Set.insert) Set.empty
    

  7. toIntSet :: forall (m :: Type -> Type) . Monad m => Scanl m Int IntSet

    streamly-core Streamly.Data.Scanl

    Scan the input adding it to an int set. For integer inputs this performs better than toSet. Definition:

    >>> toIntSet = Scanl.mkScanl (flip IntSet.insert) IntSet.empty
    

  8. toSet :: forall (m :: Type -> Type) a . (Monad m, Ord a) => Scanl m a (Set a)

    streamly-core Streamly.Data.Scanl

    Scan the input adding it to a set. Definition:

    >>> toSet = Scanl.mkScanl (flip Set.insert) Set.empty
    

  9. toIntSet :: forall (m :: Type -> Type) . Monad m => Fold m Int IntSet

    streamly-core Streamly.Internal.Data.Fold

    Fold the input to an int set. For integer inputs this performs better than toSet. Definition:

    >>> toIntSet = Fold.foldl' (flip IntSet.insert) IntSet.empty
    

  10. toSet :: forall (m :: Type -> Type) a . (Monad m, Ord a) => Fold m a (Set a)

    streamly-core Streamly.Internal.Data.Fold

    Fold the input to a set. Definition:

    >>> toSet = Fold.foldl' (flip Set.insert) Set.empty
    

Page 154 of many | Previous | Next