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

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

    Cabal-syntax Distribution.Compat.Semigroup

    No documentation available.

  3. FLSLast :: ByteString -> FieldLineStream

    Cabal-syntax Distribution.Parsec.FieldLineStream

    No documentation available.

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

  5. Elastic_2_0 :: LicenseId

    Cabal-syntax Distribution.SPDX.LicenseId

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

  6. relaxLastInterval :: VersionIntervals -> VersionIntervals

    Cabal-syntax Distribution.Types.VersionInterval

    No documentation available.

  7. relaxLastInterval :: VersionIntervals -> VersionIntervals

    Cabal-syntax Distribution.Types.VersionInterval.Legacy

    Remove the last upper bound, enlarging the range. But empty ranges stay empty. <math>.

  8. safeLast :: [a] -> Maybe a

    Cabal-syntax Distribution.Utils.Generic

    A total variant of last.

  9. stringLast :: Eq a => [a] -> [a] -> Maybe Int

    hxt Text.XML.HXT.DOM.Util

    find the position of the last occurence of a string

  10. appInfoSetAsLastUsedForType :: (HasCallStack, MonadIO m, IsAppInfo a) => a -> Text -> m ()

    gi-gio GI.Gio.Interfaces.AppInfo

    Sets the application as the last used application for a given type. This will make the application appear as first in the list returned by appInfoGetRecommendedForType, regardless of the default application for that content type.

Page 75 of many | Previous | Next