class Turbopuffer::Internal::Type::ArrayOf

def ==(other)

Returns:
  • (Boolean) -

Parameters:
  • other (Object) --

Other tags:
    Api: - public
def ==(other)
  # rubocop:disable Layout/LineLength
  other.is_a?(Turbopuffer::Internal::Type::ArrayOf) && other.nilable? == nilable? && other.item_type == item_type
  # rubocop:enable Layout/LineLength
end