class RubyXL::Reference

def cover?(other)

def cover?(other)
  !other.nil? && (@row_range.cover?(other.row_range.begin) && @row_range.cover?(other.row_range.end) &&
                  @col_range.cover?(other.col_range.begin) && @col_range.cover?(other.col_range.end))
end