Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
map :: forall a b (n :: Nat) . (a -> b) -> Vec n a -> Vec n bclash-prelude Clash.Explicit.Prelude "map f xs" is the vector obtained by applying f to each element of xs, i.e.,
map f (x1 :> x2 :> ... :> xn :> Nil) == (f x1 :> f x2 :> ... :> f xn :> Nil)
and corresponds to the following circuit layout:map :: forall a b (n :: Nat) . (a -> b) -> Vec n a -> Vec n bclash-prelude Clash.Explicit.Prelude.Safe "map f xs" is the vector obtained by applying f to each element of xs, i.e.,
map f (x1 :> x2 :> ... :> xn :> Nil) == (f x1 :> f x2 :> ... :> f xn :> Nil)
and corresponds to the following circuit layout:map :: forall a b (n :: Nat) . (a -> b) -> Vec n a -> Vec n bclash-prelude Clash.Prelude "map f xs" is the vector obtained by applying f to each element of xs, i.e.,
map f (x1 :> x2 :> ... :> xn :> Nil) == (f x1 :> f x2 :> ... :> f xn :> Nil)
and corresponds to the following circuit layout:map :: forall a b (n :: Nat) . (a -> b) -> Vec n a -> Vec n bclash-prelude Clash.Prelude.Safe "map f xs" is the vector obtained by applying f to each element of xs, i.e.,
map f (x1 :> x2 :> ... :> xn :> Nil) == (f x1 :> f x2 :> ... :> f xn :> Nil)
and corresponds to the following circuit layout:map :: forall a b (n :: Nat) . (a -> b) -> Vec n a -> Vec n bclash-prelude Clash.Sized.Vector "map f xs" is the vector obtained by applying f to each element of xs, i.e.,
map f (x1 :> x2 :> ... :> xn :> Nil) == (f x1 :> f x2 :> ... :> f xn :> Nil)
and corresponds to the following circuit layout:map :: (Double -> Double) -> Matrix -> Matrixdense-linear-algebra Statistics.Matrix Apply function to every element of matrix
-
ihaskell IHaskellPrelude map f xs is the list obtained by applying f to each element of xs, i.e.,
map f [x1, x2, ..., xn] == [f x1, f x2, ..., f xn] map f [x1, x2, ...] == [f x1, f x2, ...]
this means that map id == idExamples
>>> map (+1) [1, 2, 3] [2,3,4]
>>> map id [1, 2, 3] [1,2,3]
>>> map (\n -> 3 * n + 1) [1, 2, 3] [4,7,10]
-
incipit-base Incipit.Base map f xs is the list obtained by applying f to each element of xs, i.e.,
map f [x1, x2, ..., xn] == [f x1, f x2, ..., f xn] map f [x1, x2, ...] == [f x1, f x2, ...]
this means that map id == idExamples
>>> map (+1) [1, 2, 3] [2,3,4]
>>> map id [1, 2, 3] [1,2,3]
>>> map (\n -> 3 * n + 1) [1, 2, 3] [4,7,10]
map :: (Int -> Int) -> IntSet -> IntSetintern Data.Interned.IntSet O(n*min(n,W)). map f s is the set obtained by applying f to each element of s. It's worth noting that the size of the result may be smaller if, for some (x,y), x /= y && f x == f y
map :: (Representable a, Representable b) => (a % 1 -> b) -> List a % 1 -> Pool % 1 -> List blinear-base Foreign.List No documentation available.