Hoogle Search

Within LTS Haskell 24.9 (ghc-9.10.2)

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

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

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

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

  4. lastOf :: FoldLike (Last a) s t a b -> s -> Maybe a

    lens-family-core Lens.Family

    lastOf :: Fold s t a b -> s -> Maybe a
    
    Returns Just the last referenced value. Returns Nothing if there are no referenced values.

  5. lastM :: Monad m => Vector a -> m a

    rebase Rebase.Data.Vector

    No documentation available.

  6. lastM :: (Vector v a, Monad m) => v a -> m a

    rebase Rebase.Data.Vector.Generic

    No documentation available.

  7. lastM :: (Prim a, Monad m) => Vector a -> m a

    rebase Rebase.Data.Vector.Primitive

    No documentation available.

  8. lastM :: (Storable a, Monad m) => Vector a -> m a

    rebase Rebase.Data.Vector.Storable

    No documentation available.

  9. lastM :: (Unbox a, Monad m) => Vector a -> m a

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  10. lastExitCode :: Sh Int

    shelly Shelly

    The exit code from the last command. Unless you set errExit to False you won't get a chance to use this: a non-zero exit code will throw an exception.

Page 35 of many | Previous | Next