I'm looking for something built-in to Ruby that works kind of like
Object#tap, but only yields if self is not nil.
That is, can I do this without monkey-patching Object?
If it's in Activesupport that's fine too. I feel like this method exists
but I can't find it.
class Object
def tap_unless_nil
if nil?
nil
else
yield self
end
end
end
"hello".tap_unless_nil{ |a| puts "yielded #{a.inspect}" }
nil.tap_unless_nil{ |a| puts "yielded #{a.inspect}" }
--
You received this message because you are subscribed to the Google Groups "Ruby
or Rails Oceania" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/rails-oceania/-/XkiiF0QABO0J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rails-oceania?hl=en.