jsoniter-scala
jsoniter-scala copied to clipboard
Scala macros for compile-time generation of safe and ultra-fast JSON codecs
Hi I would like to ask you for your opinion on problem I've encountered. I'll try to be as brief as possible. ``` sealed trait MyTrait case class Foo(x: Int)...
Hi, is there an equivalent to the Java lib `Jsoniter.deserialize` function: ```java Any any = Jsoniter.deserialize(input); // deserialize returns "Any", actual parsing is done lazily any.get("items", '*', "name", 0); //...
There are some use cases where the default scheme of generating the `JsonValueCodec` can cause some issues when migrating from another library (such as play-json) where custom formats have been...