We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For classes where these libraries overlap, does play-json-extensions produce and read the same output as play-json? Is it supposed to?
play-json-extensions
play-json
e.g.
case class Foo(bar: String, baz: Int) object Foo { val jsonFormat: OFormat[Foo] = Json.format[Foo] val jsonxFormat: OFormat[Foo] = Jsonx.formatCaseClassUseDefaults[Foo] val foo: Foo = Foo("ab", 1) val fooVal: JsValue = ... assert(jsonFormat.writes(foo) == jsonxFormat.writes(foo)) assert(jsonFormat.reads(foo) == jsonxFormat.reads(foo)) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For classes where these libraries overlap, does
play-json-extensions
produce and read the same output asplay-json
? Is it supposed to?e.g.
The text was updated successfully, but these errors were encountered: