Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for writePatternSet (0.14 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/PatternSetCodec.kt

            write(value.other)
            writePatternSet(value)
        }
    
        override suspend fun ReadContext.decode(): IntersectionPatternSet {
            val other = read() as PatternSet
            return IntersectionPatternSet(other).apply {
                readPatternSet(this)
            }
        }
    }
    
    
    private
    suspend fun WriteContext.writePatternSet(value: PatternSet) {
        writeBoolean(value.isCaseSensitive)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top