in lib/openai/internal/type/array_of.rb [30:45]
def self.[](...) = new(...)
def ===(other) = other.is_a?(Array) && other.all?(item_type)
def ==(other)
other.is_a?(OpenAI::Internal::Type::ArrayOf) && other.nilable? == nilable? && other.item_type == item_type
end