public boolean equals()

in extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/ArraySchema.java [114:126]


    public boolean equals(Object other) {
        if (other == this) {
            return true;
        }

        if (!(other instanceof ArraySchema)) {
            return false;
        }

        ArraySchema rhs = ((ArraySchema) other);
        return minItems == rhs.minItems && maxItems == rhs.maxItems && uniqueItems == rhs.uniqueItems
            && Objects.equals(this.elementType, rhs.elementType);
    }