Monadic operations #
mapM #
Applies the monadic action f
on every element in the list, left-to-right, and returns the list of
results.
This is a non-tail-recursive variant of List.mapM
that's easier to reason about. It cannot be used
as the main definition and replaced by the tail-recursive version because they can only be proved
equal when m
is a LawfulMonad
.
Equations
- List.mapM' f [] = pure []
- List.mapM' f (a :: l) = do let __do_lift ← f a let __do_lift_1 ← List.mapM' f l pure (__do_lift :: __do_lift_1)
Auxiliary lemma for mapM_eq_reverse_foldlM_cons
.
filterMapM #
flatMapM #
foldlM and foldrM #
forM #
forIn' #
We can express a for loop over a list as a fold,
in which whenever we reach .done b
we keep that value through the rest of the fold.
We can express a for loop over a list which always yields as a fold.
We can express a for loop over a list as a fold,
in which whenever we reach .done b
we keep that value through the rest of the fold.
We can express a for loop over a list which always yields as a fold.
allM and anyM #
Recognizing higher order functions using a function that only depends on the value. #
This lemma identifies monadic folds over lists of subtypes, where the function only depends on the value, not the proposition, and simplifies these to the function directly taking the value.
This lemma identifies monadic folds over lists of subtypes, where the function only depends on the value, not the proposition, and simplifies these to the function directly taking the value.
This lemma identifies monadic maps over lists of subtypes, where the function only depends on the value, not the proposition, and simplifies these to the function directly taking the value.