Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

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

  1. unsafeLast :: MonoFoldable mono => mono -> Element mono

    mono-traversable Data.MonoTraversable

    Equivalent to lastEx.

  2. _last :: Snoc s s a a => Traversal' s a

    rio RIO.Lens

    _last gives you access to the last element of the list:

    >>> "Hello." ^? _last
    '.'
    
    See documentation for _head, as _last and _head are pretty similar.

  3. periodLastDay :: DayPeriod p => p -> Day

    rio RIO.Time

    Returns the last Day in a period of days.

  4. weekLastDay :: DayOfWeek -> Day -> Day

    rio RIO.Time

    Returns the last day of a week containing the given Day. Examples:

    >>> weekLastDay Sunday (YearMonthDay 2022 02 21)
    YearMonthDay 2022 2 26
    
    >>> weekLastDay Monday (YearMonthDay 2022 02 21)
    YearMonthDay 2022 2 27
    
    >>> weekLastDay Tuesday (YearMonthDay 2022 02 21)
    YearMonthDay 2022 2 21
    

  5. unsafeLast :: Vector a -> a

    rio RIO.Vector.Boxed.Unsafe

    No documentation available.

  6. unsafeLastM :: Monad m => Vector a -> m a

    rio RIO.Vector.Boxed.Unsafe

    No documentation available.

  7. unsafeLast :: Storable a => Vector a -> a

    rio RIO.Vector.Storable.Unsafe

    No documentation available.

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

    rio RIO.Vector.Storable.Unsafe

    No documentation available.

  9. unsafeLast :: Unbox a => Vector a -> a

    rio RIO.Vector.Unboxed.Unsafe

    No documentation available.

  10. unsafeLastM :: (Unbox a, Monad m) => Vector a -> m a

    rio RIO.Vector.Unboxed.Unsafe

    No documentation available.

Page 72 of many | Previous | Next