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 :: (forall t . Typeable t => Item x t -> Item y t) -> TypeMap x -> TypeMap y

    type-map Data.TypeMap.Internal.Dynamic.Alt

    Map a function on all elements.

  2. map :: (Unboxable a, Unboxable b) => (a -> b) -> Vector a -> Vector b

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  3. map :: forall a b (n :: Nat) . SNatI n => (a -> b) -> Vec n a -> Vec n b

    vec Data.Vec.DataFamily.SpineStrict

    >>> map not $ True ::: False ::: VNil
    False ::: True ::: VNil
    

  4. map :: forall a b (n :: Nat) . (a -> b) -> Vec n a -> Vec n b

    vec Data.Vec.Lazy

    >>> map not $ True ::: False ::: VNil
    False ::: True ::: VNil
    

  5. map :: forall a b (n :: Nat) . SNatI n => (a -> b) -> Vec n a -> Vec n b

    vec Data.Vec.Lazy.Inline

    >>> map not $ True ::: False ::: VNil
    False ::: True ::: VNil
    

  6. map :: forall a b (n :: Nat) . (a -> b) -> Vec n a -> Vec n b

    vec Data.Vec.Pull

    >>> L.fromPull $ map not $ L.toPull $ True L.::: False L.::: L.VNil
    False ::: True ::: VNil
    

  7. map :: (branch0 -> branch1) -> (leaf0 -> leaf1) -> T branch0 leaf0 -> T branch1 leaf1

    wraxml Data.Tree.BranchLeaf

    No documentation available.

  8. map :: (branch0 -> branch1) -> (leaf0 -> leaf1) -> T i branch0 leaf0 -> T i branch1 leaf1

    wraxml Data.Tree.BranchLeafLabel

    No documentation available.

  9. map :: (a -> b) -> IntervalMap k a -> IntervalMap k b

    IntervalMap Data.IntervalMap.Generic.Lazy

    O(n). Map a function over all values in the map.

  10. map :: (a -> b) -> IntervalMap k a -> IntervalMap k b

    IntervalMap Data.IntervalMap.Generic.Strict

    O(n). Map a function over all values in the map.

Page 32 of many | Previous | Next