Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
bound Bound.Scope.Simple Perform a change of variables, reassigning both bound and free variables.
map2 :: Text -> Builder -> Text -> Builder -> Builderbytebuild Data.Bytes.Builder.Avro Encode a map with exactly two key-value pairs. The keys are text. This is commonly used to encode the header in an avro file, which has a map with two keys: avro.schema and avro.codec.
mapErrorEffectfully :: (e1 -> ST s e2) -> Parser e1 s a -> Parser e2 s abytesmith Data.Bytes.Parser Effectfully adjusts the error message if an error occurs.
-
contiguous Data.Primitive.Contiguous Map strictly over the elements of an array. Note that because a new array must be created, the resulting array type can be different than the original.
-
contiguous Data.Primitive.Contiguous No documentation available.
-
contiguous Data.Primitive.Contiguous Monadic accumulating strict left fold over the elements on an array.
-
contiguous Data.Primitive.Contiguous Map each element of a structure to a monadic action, evaluate these actions from left to right, and collect the results. for a version that ignores the results see mapM_.
-
contiguous Data.Primitive.Contiguous Map each element of a structure to a monadic action, evaluate these actions from left to right, and ignore the results. For a version that doesn't ignore the results see mapM. mapM_ = traverse_
-
contiguous Data.Primitive.Contiguous The mapMaybe function is a version of map which can throw out elements. In particular, the functional arguments returns something of type Maybe b. If this is Nothing, no element is added on to the result array. If it is Just b, then b is included in the result array.
-
contiguous Data.Primitive.Contiguous Map over a mutable array, modifying the elements in place.