Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. findFirstFile :: (FilePath -> IO Bool) -> FilePath -> IO FilePath

    sandwich-contexts Test.Sandwich.Contexts.Files

    Find the first file under the given directory (recursively) which matches the predicate. Note that the callback receives the full relative path to the file from the root dir. Throws using expectationFailure when the file is not found.

  2. findFirstFileInDirs :: (FilePath -> IO Bool) -> [FilePath] -> IO FilePath

    sandwich-contexts Test.Sandwich.Contexts.Files

    Find the first file under the given directory (recursively) which matches the predicate. Note that the callback receives the full relative path to the file from the root dir. Throws using expectationFailure when the file is not found.

  3. removeFirst :: SInteger -> SList Integer -> SList Integer

    sbv Documentation.SBV.Examples.KnuckleDragger.InsertionSort

    Remove the first occurrence of an number from a list, if any.

  4. rollingHashFirstN :: forall (m :: Type -> Type) a . (Monad m, Enum a) => Int -> Fold m a Int64

    streamly-core Streamly.Internal.Data.Fold

    Compute an Int sized polynomial rolling hash of the first n elements of a stream.

    >>> rollingHashFirstN n = Fold.take n Fold.rollingHash
    
    Pre-release

  5. AppendFirst :: s1 -> AppendState s1 s2

    streamly-core Streamly.Internal.Data.Stream

    No documentation available.

  6. FoldManyFirst :: fs -> s -> FoldMany s fs b a

    streamly-core Streamly.Internal.Data.Stream

    No documentation available.

  7. InterleaveFirst :: s1 -> s2 -> InterleaveState s1 s2

    streamly-core Streamly.Internal.Data.Stream

    No documentation available.

  8. InterleaveFirstOnly :: s1 -> InterleaveState s1 s2

    streamly-core Streamly.Internal.Data.Stream

    No documentation available.

  9. discardFirst :: forall (m :: Type -> Type) a b c . Unfold m a b -> Unfold m (c, a) b

    streamly-core Streamly.Internal.Data.Unfold

    Convert an Unfold into an unfold accepting a tuple as an argument, using the argument of the original fold as the second element of tuple and discarding the first element of the tuple.

    discardFirst = Unfold.lmap snd
    
    Pre-release

  10. getFirst :: First a -> Maybe a

    testing-feat Test.Feat.Enumerate

    No documentation available.

Page 86 of many | Previous | Next