How does tap method work concurrencywise? Do I have to fear that if I do:
some_object.tap { |o|
# time-consuming operation 1
}.tap { |o|
# time-consuming operation 2
}
that, in the present or future, Ruby will try to do these operations concurrently? You know, #tap sounds dangerous.
Is it guaranteed that the #tap block executes in sequence (unless, of course, one does something unusual inside the block)?