Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. mapOnOther :: OpcodeMapper (m :: Type -> Type) a b -> Opcode' a -> m (Maybe (Opcode' b))

    evm-opcodes EVM.Opcode.Traversal

    No documentation available.

  2. mapOpcodeM :: Monad m => OpcodeMapper m a b -> Opcode' a -> m (Opcode' b)

    evm-opcodes EVM.Opcode.Traversal

    Given an OpcodeMapper and an Opcode' a, produce m (Opcode' b).

  3. mapsize :: CacheSettings -> ECMMapSize

    expiring-cache-map Caching.ExpiringCacheMap.HashECM

    No documentation available.

  4. mapsize :: CacheSettings -> ECMMapSize

    expiring-cache-map Caching.ExpiringCacheMap.OrdECM

    No documentation available.

  5. mapsize :: CacheSettings -> ECMMapSize

    expiring-cache-map Caching.ExpiringCacheMap.Types

    No documentation available.

  6. mapCons :: (Listable a, Listable b) => ([(a, b)] -> c) -> [[c]]

    extrapolate Test.Extrapolate

    Given a constructor that takes a map of elements (encoded as a list), lists tiers of applications of this constructor So long as the underlying Listable enumerations have no repetitions, this will generate no repetitions. This allows defining an efficient implementation of tiers that does not repeat maps given by:

    tiers  =  mapCons fromList
    

  7. mapT :: (a -> b) -> [[a]] -> [[b]]

    extrapolate Test.Extrapolate

    map over tiers

    mapT f [[x], [y,z], [w,...], ...]  =  [[f x], [f y, f z], [f w, ...], ...]
    
    mapT f [xs, ys, zs, ...]  =  [map f xs, map f ys, map f zs]
    

  8. mapCons :: (Listable a, Listable b) => ([(a, b)] -> c) -> [[c]]

    extrapolate Test.Extrapolate.Core

    Given a constructor that takes a map of elements (encoded as a list), lists tiers of applications of this constructor So long as the underlying Listable enumerations have no repetitions, this will generate no repetitions. This allows defining an efficient implementation of tiers that does not repeat maps given by:

    tiers  =  mapCons fromList
    

  9. mapT :: (a -> b) -> [[a]] -> [[b]]

    extrapolate Test.Extrapolate.Core

    map over tiers

    mapT f [[x], [y,z], [w,...], ...]  =  [[f x], [f y, f z], [f w, ...], ...]
    
    mapT f [xs, ys, zs, ...]  =  [map f xs, map f ys, map f zs]
    

  10. mappend :: Monoid a => a -> a -> a

    faktory Faktory.Prelude

    An associative operation NOTE: This method is redundant and has the default implementation mappend = (<>) since base-4.11.0.0. Should it be implemented manually, since mappend is a synonym for (<>), it is expected that the two functions are defined the same way. In a future GHC release mappend will be removed from Monoid.

Page 332 of many | Previous | Next