Hoogle Search

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

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

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

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

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

  4. _endOffset :: Name

    streamly-core Streamly.Internal.Data.MutByteArray

    No documentation available.

  5. _initialOffset :: Name

    streamly-core Streamly.Internal.Data.MutByteArray

    No documentation available.

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

    streamly-core Streamly.Internal.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
    

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

    streamly-core Streamly.Internal.Data.Scanl

    Scan the input adding it to a set. Definition:

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

  8. tapOffsetEvery :: forall (m :: Type -> Type) a b . Monad m => Int -> Int -> Fold m a b -> Stream m a -> Stream m a

    streamly-core Streamly.Internal.Data.Stream

    No documentation available.

  9. resetTimer :: Timer -> IO ()

    streamly-core Streamly.Internal.Data.Time.Clock

    Resets the current period.

  10. proseToText :: Prose -> Text

    string-variants Data.StringVariants

    No documentation available.

Page 154 of many | Previous | Next