Hoogle Search

Within LTS Haskell 24.16 (ghc-9.10.3)

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

  1. map :: IsStaticText a => (Elem a -> Elem a) -> a -> a

    static-text Data.StaticText.Class

    No documentation available.

  2. map :: forall t (m :: Type -> Type) a b . (IsStream t, Monad m) => (a -> b) -> t m a -> t m b

    streamly Streamly.Internal.Data.Stream.IsStream

    map = fmap
    
    Same as fmap.
    > D.toList $ D.map (+1) $ D.fromList [1,2,3]
    [2,3,4]
    

  3. map :: forall t (m :: Type -> Type) a b . (IsStream t, Monad m) => (a -> b) -> t m a -> t m b

    streamly Streamly.Internal.Data.Stream.IsStream

    map = fmap
    
    Same as fmap.
    > D.toList $ D.map (+1) $ D.fromList [1,2,3]
    [2,3,4]
    

  4. map :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> SerialT m a -> SerialT m b

    streamly Streamly.Internal.Data.Stream.Serial

    map = fmap
    
    Same as fmap.
    > S.toList $ S.map (+1) $ S.fromList [1,2,3]
    [2,3,4]
    

  5. map :: forall t (m :: Type -> Type) a b . (IsStream t, Monad m) => (a -> b) -> t m a -> t m b

    streamly Streamly.Prelude

    map = fmap
    
    Same as fmap.
    > D.toList $ D.map (+1) $ D.fromList [1,2,3]
    [2,3,4]
    

  6. map :: UI Element

    threepenny-gui Graphics.UI.Threepenny.Elements

    No documentation available.

  7. map :: Ord k => TomlCodec k -> TomlCodec v -> Key -> TomlCodec (Map k v)

    tomland Toml.Codec.Combinator.Map

    Bidirectional codec for Map. It takes birectional converter for keys and values and produces bidirectional codec for Map. Currently it works only with array of tables, so you need to specify Maps in TOML files like this:

    myMap =
    [ { name = "foo", payload = 42 }
    , { name = "bar", payload = 69 }
    ]
    
    TomlCodec for such TOML field can look like this:
    Toml.map (Toml.text "name") (Toml.int "payload") "myMap"
    
    If there's no key with the name "myMap" then empty Map is returned.

  8. map :: (forall t . Typeable t => Proxy t -> Item x t -> Item y t) -> TypeMap x -> TypeMap y

    type-map Data.TypeMap.Dynamic

    Map a function on all elements.

  9. map :: (forall t . Typeable t => Item x t -> Item y t) -> TypeMap x -> TypeMap y

    type-map Data.TypeMap.Dynamic.Alt

    Map a function on all elements.

  10. map :: (forall t . Typeable t => Proxy t -> Item x t -> Item y t) -> TypeMap x -> TypeMap y

    type-map Data.TypeMap.Internal.Dynamic

    Map a function on all elements.

Page 31 of many | Previous | Next