class RubyXL::Border

def ==(other)

def ==(other)
  (diagonal_up == other.diagonal_up) &&
    (diagonal_down == other.diagonal_down) &&
    (outline == other.outline) &&
    (left == other.left) &&
    (right == other.right) &&
    (top == other.top) &&
    (bottom == other.bottom) &&
    (diagonal == other.diagonal) &&
    (vertical == other.vertical) &&
    (horizontal == other.horizontal)
end