Hoogle Search

Within LTS Haskell 24.25 (ghc-9.10.3)

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

  1. LastNestFldNullable :: EntityField record (Maybe nest) -> EntityField nest typ -> NestedField record typ

    persistent-mongoDB Database.Persist.MongoDB

    No documentation available.

  2. newtype LastModifiedInfo

    gogol-dfareporting Gogol.DFAReporting

    Modification timestamp. See: newLastModifiedInfo smart constructor.

  3. LastModifiedInfo :: Maybe Int64 -> LastModifiedInfo

    gogol-dfareporting Gogol.DFAReporting

    No documentation available.

  4. newtype LastModifiedInfo

    gogol-dfareporting Gogol.DFAReporting.Types

    Modification timestamp. See: newLastModifiedInfo smart constructor.

  5. LastModifiedInfo :: Maybe Int64 -> LastModifiedInfo

    gogol-dfareporting Gogol.DFAReporting.Types

    No documentation available.

  6. module Gogol.Games.Recall.LastTokenFromAllDeveloperGames

    Retrieve the last Recall token from all developer games that is associated with the PGS Player encoded in the provided recall session id. The API is only available for users that have active PGS Player profile. See: Google Play Game Services Reference for games.recall.lastTokenFromAllDeveloperGames.

  7. LastSave :: Resp -> Command Int64

    redis-resp Data.Redis.Command

    No documentation available.

  8. LastBuildDate :: UTCTime -> ChannelElem

    rss Text.RSS

    No documentation available.

  9. last1 :: forall (t :: Type -> Type) a . Traversable1 t => Lens' (t a) a

    lens Control.Lens.Combinators

    A Lens focusing on the last element of a Traversable1 container.

    >>> 2 :| [3, 4] & last1 +~ 10
    2 :| [3,14]
    
    >>> Node 'a' [Node 'b' [], Node 'c' []] ^. last1
    'c'
    

  10. last1Of :: Getting (Last a) s a -> s -> a

    lens Control.Lens.Combinators

    Retrieve the Last entry of a Fold1 or Traversal1 or retrieve the result from a Getter or Lens.o

    >>> last1Of traverse1 (1 :| [2..10])
    10
    
    >>> last1Of both1 (1,2)
    2
    
    last1Of :: Getter s a      -> s -> Maybe a
    last1Of :: Fold1 s a       -> s -> Maybe a
    last1Of :: Lens' s a       -> s -> Maybe a
    last1Of :: Iso' s a        -> s -> Maybe a
    last1Of :: Traversal1' s a -> s -> Maybe a
    

Page 25 of many | Previous | Next