kotlinx.serialization
kotlinx.serialization copied to clipboard
Kotlin multiplatform / multi-format serialization
For fix of issues #1705 KT-50764 KT-50718
Resolves #1986
Resolves Kotlin/kotlinx.serialization#683 Kotlin/kotlinx.serialization#1372
**What is your use-case and why do you need this feature?** The only option to handle extra-large strings that don't fit memory is working with binary streames. Example: binary data...
After release with our Duration support and Kotlin 1.7.20: https://github.com/Kotlin/kotlinx.serialization/blob/master/docs/builtin-classes.md
Currently I'm in the need of serializing numbers with many decimal digits (30+ decimal digits to be more precise). To deserialzie a JSON file with this many decimal points I...
## What is your use-case and why do you need this feature? `@SerialComment` annotation will be useful for automatically generated configuration files. Some serialization libraries already implemented that feature including:...
**Describe the bug** I'm trying to create a generic class called `Event` that takes in a generic serializable payload and can be converted into Json. I'd prefer this so I...
It is sometimes the case that I want to parse an object with a few concrete properties and a bunch of additional properties. OpenAPI 3's [Responses Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#responses-object) is an example...
Currently in one of my [projects](https://git.inmo.dev/PostsSystem/core) I am getting `NoSuchElementException` error in compile time. Unfortunatelly, I am even do not know exactly which code is lead to the error. -...