You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The difference on the type signature on case class JArray(value: js.Array[JValue] = js.Array()) and case class JArray(value: Array[JValue] = Array.empty prevents from writing generic code on org.json4s.ast.fast.
My question is the following: how much do we lose if we cross compile jvm/fast/JValue.scala?
The difference on the type signature on
case class JArray(value: js.Array[JValue] = js.Array())andcase class JArray(value: Array[JValue] = Array.emptyprevents from writing generic code onorg.json4s.ast.fast.My question is the following: how much do we lose if we cross compile jvm/fast/JValue.scala?