Questions tagged [scala-3]

Scala 3.0 stands out as a versatile language that seamlessly combines functional and object-oriented paradigms into its core design. By optimizing language constructs, Scala 3.0 enhances consistency, safety, ergonomics, and performance for developers.

Circe is unable to detect a field if it includes an array

There are 2 different scenarios I'm dealing with: one where I can successfully decode a single user, and another where decoding a list of users fails: import User._ import io.circe._ import io.circe.syntax._ import io.circe.parser.decode class UserSu ...