dependabot[bot] on github_actions
Bump actions/checkout from 2 to… (compare)
object DataRecord extends XMLStandardTypes {
private case class DataWriter[+A](
namespace: Option[String],
key: Option[String],
xstypeNamespace: Option[String],
xstypeName: Option[String],
value: A,
writer: CanWriteXML[_]) extends DataRecord[A] {
override def equals(o: Any): Boolean =
o match {
case that: DataWriter[_] =>
namespace == that.namespace &&
key == that.key &&
value == that.value
case _ => false
}
override def hashCode: Int = {
var result = 17
result = result + 31 * namespace.hashCode
result = result + 31 * key.hashCode
result = result + 31 * value.hashCode
result
}
}
Definitions.scala
),JsonCodecs.scala
) - Shapeless._
is imported only there,ShapelessTests.scala
).{ "Left" / "Right": ... }
, or to add a custom field for the type, ...)cachedImplicit
or orphans :-(
Generic1
bug and I'll release as soon as I have a fix for that. Fingers X'd today or tomorrow :-)
Lazy
compared to implicitly
. Namely, implicitly
find implicits from argonaut.Argonaut
, whereas Lazy
apparently tries to derive these as ADTs, not viewing those of argonaut.Argonaut
, and fails.