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. deleteFirstsBy :: (a -> a -> Bool) -> [a] -> [a] -> [a]

    ghc-internal GHC.Internal.Data.OldList

    The deleteFirstsBy function takes a predicate and two lists and returns the first list with the first occurrence of each element of the second list removed. This is the non-overloaded version of (\\).

    (\\) == deleteFirstsBy (==)
    
    The second list must be finite, but the first may be infinite.

    Examples

    >>> deleteFirstsBy (>) [1..10] [3, 4, 5]
    [4,5,6,7,8,9,10]
    
    >>> deleteFirstsBy (/=) [1..10] [1, 3, 5]
    [4,5,6,7,8,9,10]
    

  2. compactGetFirstBlock# :: Compact# -> State# RealWorld -> (# State# RealWorld, Addr#, Word# #)

    ghc-internal GHC.Internal.Exts

    Returns the address and the utilized size (in bytes) of the first compact block of a CNF.

  3. info_firstbyte :: PCREInfo

    pcre-light Text.Regex.PCRE.Light.Base

    No documentation available.

  4. info_firstchar :: PCREInfo

    pcre-light Text.Regex.PCRE.Light.Base

    No documentation available.

  5. info_firsttable :: PCREInfo

    pcre-light Text.Regex.PCRE.Light.Base

    No documentation available.

  6. compFirstLine :: CompOption

    regex-pcre-builtin Text.Regex.PCRE

    No documentation available.

  7. compFirstLine :: CompOption

    regex-pcre-builtin Text.Regex.PCRE.ByteString

    No documentation available.

  8. compFirstLine :: CompOption

    regex-pcre-builtin Text.Regex.PCRE.ByteString.Lazy

    No documentation available.

  9. compFirstLine :: CompOption

    regex-pcre-builtin Text.Regex.PCRE.Sequence

    No documentation available.

  10. compFirstLine :: CompOption

    regex-pcre-builtin Text.Regex.PCRE.String

    No documentation available.

Page 54 of many | Previous | Next