:: Monad m => [a] -> (a -> m ()) -> m () package:vector

O(n) Apply the monadic action to all elements of a vector and ignore the results. Equivalent to flip mapM_.
O(n) Apply the monadic action to all elements of a vector and ignore the results.