'Executes' the sequence of monadic values resulting from mapping
f onto the values xs. f must return a monadic value.
(defmonadfn m-map "'Executes' the sequence of monadic values resulting from mapping f onto the values xs. f must return a monadic value." [f xs] (m-seq (map f xs)))
Comments top
No comments for m-map. Log in to add a comment.