Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for matchesPairwise (0.68 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DataStructuralEquality.kt

                values.matchesPairwise(other.values, ValueNode::structurallyEquals)
        }
    
        fun DocumentNode.structurallyEquals(other: DocumentNode): Boolean = when (this) {
            is ElementNode -> other is ElementNode &&
                name == other.name &&
                elementValues.matchesPairwise(other.elementValues, ValueNode::structurallyEquals) &&
                content.matchesPairwise(other.content, DocumentNode::structurallyEquals)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top