• About
  • Snapshots
  • LTS
  • Nightly
  • FAQ
  • Blog

Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. intMapAssocs :: IntMap value -> Unfoldr (Int, value)

    deferred-folds DeferredFolds.Unfoldr

    Associations of an intmap

  2. type family ConcatMap (f :: a ~> [b]) (xs :: [a]) :: [b]

    defun-core DeFun.List

    List concatMap

  3. data ConcatMapSym (f :: FunKind a ~> [b] [a] ~> [b])

    defun-core DeFun.List

    No documentation available.

  4. data ConcatMapSym1 (f :: a ~> [b]) (xs :: FunKind [a] [b])

    defun-core DeFun.List

    No documentation available.

  5. PersistMap :: [(Text, PersistValue)] -> PersistValue

    esqueleto Database.Esqueleto

    No documentation available.

  6. PersistMap :: [(Text, PersistValue)] -> PersistValue

    esqueleto Database.Esqueleto.Experimental

    No documentation available.

  7. PersistMap :: [(Text, PersistValue)] -> PersistValue

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

  8. dimap :: Profunctor p => (a -> b) -> (c -> d) -> p b c -> p a d

    essence-of-live-coding LiveCoding

    Map over both arguments at the same time.

    dimap f g ≡ lmap f . rmap g
    

  9. lmap :: Profunctor p => (a -> b) -> p b c -> p a c

    essence-of-live-coding LiveCoding

    Map the first argument contravariantly.

    lmap f ≡ dimap f id
    

  10. rmap :: Profunctor p => (b -> c) -> p a b -> p a c

    essence-of-live-coding LiveCoding

    Map the second argument covariantly.

    rmap ≡ dimap id
    

Page 596 of many | Previous | Next

Stackage is a service provided by the Haskell Foundation │ Originally developed by FP Complete