org.json4s
Function to merge two JSONs.
Return merged JSON.
Example:
val m = ("name", "joe") ~ ("age", 10) merge ("name", "joe") ~ ("iq", 105) m: JObject(List((name,JString(joe)), (age,JInt(10)), (iq,JInt(105))))
Function to merge two JSONs.