KotlinDeepCopy
KotlinDeepCopy copied to clipboard
DeepCopy extensions for Kotlin Data class. Provide Reflection, Apt, Ksp and Kcp implementations.
The project consists of three separated parts: Reflection, Annotation/Symbol Processing, Complier Plugin. Rearrange the modules to make it more clear.
```kotlin @DeepCopy data class Team2(val name: String, val workers: List, val pair: Pair, val map: Map){ @DeepCopy data class Worker2(val name: String) } ``` The name of the file generated...
Hi, I really appreciate having such a great library, I was just wondering if it's stable enough for production. Have you used this library in any applications already released on...