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. associatedTyNotParamOverLastTyVar :: Maybe TyCon -> AssociatedTyNotParamOverLastTyVar

    ghc GHC.Tc.Errors.Types

    No documentation available.

  2. changeLast :: [a] -> a -> [a]

    ghc GHC.Utils.Misc

    Replace the last element of a list with another element.

  3. sdocLastColour :: SDocContext -> !PprColour

    ghc GHC.Utils.Outputable

    The most recently used colour. This allows nesting colours.

  4. type family XLastStmt x x' b

    ghc Language.Haskell.Syntax.Extension

    No documentation available.

  5. jsonLast :: Parser Value

    attoparsec-aeson Data.Aeson.Parser

    Variant of json which keeps only the last occurrence of every key.

  6. jsonLast' :: Parser Value

    attoparsec-aeson Data.Aeson.Parser

    Variant of json' which keeps only the last occurrence of every key.

  7. jsonLast :: Parser Value

    attoparsec-aeson Data.Aeson.Parser.Internal

    Variant of json which keeps only the last occurrence of every key.

  8. jsonLast' :: Parser Value

    attoparsec-aeson Data.Aeson.Parser.Internal

    Variant of json' which keeps only the last occurrence of every key.

  9. getLast :: Last a -> Maybe a

    generic-deriving Generics.Deriving.Monoid

    No documentation available.

  10. _last :: Snoc s s a a => AffineTraversal' s a

    optics-core Optics.Cons.Core

    An AffineTraversal reading and writing to the last element of a non-empty container.

    >>> "abc" ^? _last
    Just 'c'
    
    >>> "" ^? _last
    Nothing
    
    >>> [1,2,3] & _last %~ (+1)
    [1,2,4]
    
    >>> [1,2] ^? _last
    Just 2
    
    >>> [] & _last .~ 1
    []
    
    >>> [0] & _last .~ 2
    [2]
    
    >>> [0,1] & _last .~ 2
    [0,2]
    

Page 70 of many | Previous | Next