# File lib/rgen/array_extensions.rb, line 8 def >>(method) compact.inject([]) { |r,e| r | ( (o=e.send(method)).is_a?(Array) ? o : [o] ) } end