Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readCollectionCheckingForCircularElementsInto (0.44 sec)

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

        override suspend fun WriteContext.encode(value: HashSet<Any?>) {
            writeCollectionCheckingForCircularElements(value)
        }
    
        override suspend fun ReadContext.decode(): HashSet<Any?> =
            readCollectionCheckingForCircularElementsInto(::LinkedHashSet)
    }
    
    
    private
    suspend fun WriteContext.writeCollectionCheckingForCircularElements(collection: Collection<Any?>) {
        var writeCircularMarker = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top