Hoogle Search

Within LTS Haskell 24.12 (ghc-9.10.3)

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

  1. setLastUpdate :: CRL -> UTCTime -> IO ()

    HsOpenSSL OpenSSL.X509.Revocation

    setLastUpdate crl utc updates the time when the revocation list has last been updated.

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

    storablevector Data.StorableVector.Base

    A variety of last for non-empty Vectors. unsafeLast omits the check for the empty case, so there is an obligation on the programmer to provide a proof that the Vector is non-empty.

  3. zipWithLastPattern :: (Storable a, Storable b, Storable c) => (a -> b -> c) -> Vector a -> Vector b -> Vector c

    storablevector Data.StorableVector.Lazy

    Preserves chunk pattern of the last argument.

  4. zipWithLastPattern3 :: (Storable a, Storable b, Storable c, Storable d) => (a -> b -> c -> d) -> Vector a -> Vector b -> Vector c -> Vector d

    storablevector Data.StorableVector.Lazy

    Preserves chunk pattern of the last argument.

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

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

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

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

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

    time-compat Data.Time.Calendar.Compat

    Returns the last Day in a period of days.

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

Page 74 of many | Previous | Next