Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. lastNode :: forall n (x :: Extensibility) . Block n x C -> n O C

    ghc-lib-parser GHC.Cmm.Dataflow.Block

    No documentation available.

  2. lastOL :: OrdList a -> a

    ghc-lib-parser GHC.Data.OrdList

    No documentation available.

  3. last_len :: PState -> !Int

    ghc-lib-parser GHC.Parser.Lexer

    No documentation available.

  4. last_loc :: PState -> PsSpan

    ghc-lib-parser GHC.Parser.Lexer

    No documentation available.

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

    ghc-lib-parser GHC.Parser.Lexer

    No documentation available.

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

    ghc-lib-parser GHC.Utils.Misc

    Get the last two elements in a list.

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

    ghc-lib-parser GHC.Utils.Misc

    No documentation available.

  8. lasts :: Dims -> Array a -> Array a

    harpie Harpie.Array

    Select the last element along the supplied dimensions.

    >>> pretty $ lasts [0,2] a
    [15,19,23]
    

  9. lasts :: forall (ds :: [Nat]) (s :: [Nat]) (s' :: [Nat]) a . (KnownNats s, KnownNats ds, KnownNats s', s' ~ Eval (DeleteDims ds s)) => Dims ds -> Array s a -> Array s' a

    harpie Harpie.Fixed

    Select the last element along the supplied dimensions.

    >>> pretty $ lasts (Dims @[0,2]) a
    [15,19,23]
    

  10. lastPos :: Int -> [Int] -> Int

    harpie Harpie.Shape

    Get the last position of a dimension of a shape.

    >>> lastPos 2 [2,3,4]
    3
    
    >>> lastPos 0 []
    0
    

Page 34 of many | Previous | Next