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. zipWithLastPattern4 :: (Storable a, Storable b, Storable c, Storable d, Storable e) => (a -> b -> c -> d -> e) -> Vector a -> Vector b -> Vector c -> Vector d -> Vector e

    storablevector Data.StorableVector.Lazy

    Preserves chunk pattern of the last argument.

  2. zipWithLastPattern :: (Size size, Storable a, Storable b, Storable c) => (a -> b -> c) -> Vector size a -> Vector size b -> Vector size c

    storablevector Data.StorableVector.Lazy.Typed

    Preserves chunk pattern of the last argument.

  3. zipWithLastPattern3 :: (Size size, Storable a, Storable b, Storable c, Storable d) => (a -> b -> c -> d) -> Vector size a -> Vector size b -> Vector size c -> Vector size d

    storablevector Data.StorableVector.Lazy.Typed

    Preserves chunk pattern of the last argument.

  4. zipWithLastPattern4 :: (Size size, Storable a, Storable b, Storable c, Storable d, Storable e) => (a -> b -> c -> d -> e) -> Vector size a -> Vector size b -> Vector size c -> Vector size d -> Vector size e

    storablevector Data.StorableVector.Lazy.Typed

    Preserves chunk pattern of the last argument.

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

    time-compat Data.Time.Calendar.Compat

    Returns the last Day in a period of days.

  6. weekLastDay :: DayOfWeek -> Day -> Day

    time-compat Data.Time.Calendar.Compat

    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
    

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

    diagrams-lib Diagrams.Prelude

    A Traversal reading and writing to the last element of a non-empty container.

    >>> [a,b,c]^?!_last
    c
    
    >>> []^?_last
    Nothing
    
    >>> [a,b,c] & _last %~ f
    [a,b,f c]
    
    >>> [1,2]^?_last
    Just 2
    
    >>> [] & _last .~ 1
    []
    
    >>> [0] & _last .~ 2
    [2]
    
    >>> [0,1] & _last .~ 2
    [0,2]
    
    This Traversal is not limited to lists, however. We can also work with other containers, such as a Vector.
    >>> Vector.fromList "abcde" ^? _last
    Just 'e'
    
    >>> Vector.empty ^? _last
    Nothing
    
    >>> (Vector.fromList "abcde" & _last .~ 'Q') == Vector.fromList "abcdQ"
    True
    
    _last :: Traversal' [a] a
    _last :: Traversal' (Seq a) a
    _last :: Traversal' (Vector a) a
    

  8. getLast' :: Last' a -> a

    Cabal-syntax Distribution.Compat.Semigroup

    No documentation available.

  9. FLSLast :: ByteString -> FieldLineStream

    Cabal-syntax Distribution.Parsec.FieldLineStream

    No documentation available.

  10. Elastic_2_0 :: LicenseId

    Cabal-syntax Distribution.SPDX

    Elastic-2.0, Elastic License 2.0, SPDX License List 3.16, SPDX License List 3.23

Page 74 of many | Previous | Next