Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
bound Bound.Scope A traverseScope that can be used when you only have a Monad instance
-
bound Bound.Scope A traverseScope_ that can be used when you only have a Monad instance
-
bound Bound.Scope.Simple mapM over both bound and free variables
-
bound Bound.Scope.Simple mapM_ over the variables bound by this scope
-
bound Bound.Scope.Simple A traverseScope that can be used when you only have a Monad instance
-
bound Bound.Scope.Simple A traverseScope_ that can be used when you only have a Monad instance
-
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.
-
contiguous Data.Primitive.Contiguous Strictly map over a mutable array, modifying the elements in place.