Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. map :: forall (v :: Type -> Type) a b (n :: Nat) . (Vector v a, Vector v b) => (a -> b) -> Vector v n a -> Vector v n b

    vector-sized Data.Vector.Generic.Sized

    O(n) Map a function over a vector.

  2. map :: forall a b (n :: Nat) . (Prim a, Prim b) => (a -> b) -> Vector n a -> Vector n b

    vector-sized Data.Vector.Primitive.Sized

    O(n) Map a function over a vector.

  3. map :: forall a b (n :: Nat) . (a -> b) -> Vector n a -> Vector n b

    vector-sized Data.Vector.Sized

    O(n) Map a function over a vector.

  4. map :: forall a b (n :: Nat) . (Storable a, Storable b) => (a -> b) -> Vector n a -> Vector n b

    vector-sized Data.Vector.Storable.Sized

    O(n) Map a function over a vector.

  5. map :: forall a b (n :: Nat) . (Unbox a, Unbox b) => (a -> b) -> Vector n a -> Vector n b

    vector-sized Data.Vector.Unboxed.Sized

    O(n) Map a function over a vector.

  6. map :: (PrimType a, PrimType b) => (a -> b) -> Block a -> Block b

    basement Basement.Block

    Map all element a from a block to a new block of b

  7. map :: forall a b (n :: Nat) . (PrimType a, PrimType b) => (a -> b) -> BlockN n a -> BlockN n b

    basement Basement.Sized.Block

    No documentation available.

  8. map :: forall a b (n :: Nat) . (a -> b) -> ListN n a -> ListN n b

    basement Basement.Sized.List

    Map all elements in a list

  9. map :: forall a b (n :: Nat) . (PrimType a, PrimType b) => (a -> b) -> UVect n a -> UVect n b

    basement Basement.Sized.UVect

    No documentation available.

  10. map :: forall a b (n :: Nat) . (a -> b) -> Vect n a -> Vect n b

    basement Basement.Sized.Vect

    No documentation available.

Page 23 of many | Previous | Next