1 package kotlinx.serialization.internal
2 
3 import kotlinx.serialization.descriptors.*
4 
5 /*
6  * Methods that are required for kotlinx-serialization-json, but are not effectively public.
7  *
8  * Anything marker with this annotation is not intended for public use.
9  */
10 @RequiresOptIn(level = RequiresOptIn.Level.ERROR)
11 internal annotation class CoreFriendModuleApi
12 
13 @CoreFriendModuleApi
jsonCachedSerialNamesnull14 public fun SerialDescriptor.jsonCachedSerialNames(): Set<String> = cachedSerialNames()
15