>>> traverse_ print ["Hello", "world", "!"] "Hello" "world" "!"
>>> traverse_ print (0...) -- hit Ctrl+C to terminate 0 1 2Interruptedtraverse_ could be productive for some short-circuiting f:
>>> traverse_ (\x -> if x > 10 then Left x else Right ()) (0...) Left 11
mapReduce getTraversal