Basic implicit conversions from primitive types into JSON.
A difference between two JSONs (j1 diff j2).
A difference between two JSONs (j1 diff j2).
what has changed from j1 to j2
what has been added to j2
what has been deleted from j1
Computes a diff between two JSONs.
A DSL to produce valid JSON.
A DSL to produce valid JSON. Example:
import org.json4s.JsonDSL._ ("name", "joe") ~ ("age", 15) == JObject(JField("name",JString("joe")) :: JField("age",JInt(15)) :: Nil)
Function to merge two JSONs.
Basic implicit conversions from primitive types into JSON. Example: