Work around Array#|
Override | for anything not to_ary
[Source]
# File lib/rs/objectstream.rb, line 185 def |(other) if other.respond_to? :to_ary __rs_array_pipe other else ObjectStream.new self, other end # :to_int end
[Validate]