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. last_len :: PState -> !Int

    ghc GHC.Parser.Lexer

    No documentation available.

  2. last_loc :: PState -> PsSpan

    ghc GHC.Parser.Lexer

    No documentation available.

  3. last_tk :: PState -> Maybe (PsLocated Token)

    ghc GHC.Parser.Lexer

    No documentation available.

  4. last2 :: [a] -> Maybe (a, a)

    ghc GHC.Utils.Misc

    Get the last two elements in a list.

  5. lastMaybe :: [a] -> Maybe a

    ghc GHC.Utils.Misc

    No documentation available.

  6. lastStarGreedy :: CompOption -> Bool

    regex-tdfa Text.Regex.TDFA

    False by default. This is POSIX correct but it takes space and is slower. Setting this to True will improve performance, and should be done if you plan to set the captureGroups ExecOption to False.

  7. lastStarGreedy :: CompOption -> Bool

    regex-tdfa Text.Regex.TDFA.Common

    False by default. This is POSIX correct but it takes space and is slower. Setting this to True will improve performance, and should be done if you plan to set the captureGroups ExecOption to False.

  8. lastDef :: a -> Fold a a

    foldl Control.Foldl

    Get the last element of a container or return a default value if the container is empty

  9. lastN :: Int -> Fold a [a]

    foldl Control.Foldl

    Return the last N elements

  10. lastOf :: forall k (is :: IxList) s a . Is k A_Fold => Optic' k is s a -> s -> Maybe a

    optics-core Optics.Fold

    Retrieve the last entry of a Fold.

    >>> lastOf folded [1..10]
    Just 10
    
    >>> lastOf each (1,2)
    Just 2
    

Page 28 of many | Previous | Next