Open
Description
Hi, thank you for this great library!
I'm curious if you would consider adding an option to always derive enum
s as if they were sealed trait
s/sealed abstract class
es? That is, even a simple enum
with only singleton case
s would still produce a JSON object and could be configured with AdtEncodingStrategy
.
For example:
import io.bullet.borer.{Encoder, Json}
import io.bullet.borer.derivation.MapBasedCodecs.*
enum Foo derives Encoder {
case Bar
}
Json.encode(Foo.Bar).toUtf8String // "Bar"
sealed trait Baz derives Encoder.All
object Baz {
case object Quux extends Baz
}
Json.encode(Baz.Quux: Baz).toUtf8String // {"Quux":{}}
I would like Json.encode(Foo.Bar)
to produce {"Baz":{}}
so I can use enum
s and sealed trait
s interchangeably
Metadata
Metadata
Assignees
Labels
No labels