module StitcherArrayEx

Public Instance Methods

===(other) click to toggle source
# File lib/stitcher/core_ext.rb, line 3
def === other
        size == other.size && zip(other).all? { |a, b| a === b }
end