Stacy Curl
Stacy Curl
Don't know if this is meaningful or if anything is close enough to warrant being called scanLeft. Here's some possible semantics. scanLeft(z: Z)(p: P
Scenario: I want to show the version of the current code, or the time it was built, the git branch, spago version, etc. A workaround I've applied manually is to...
By moving the current instances into a hlist.unlabelled object and creating a hlist.labelled object. See https://github.com/milessabin/shapeless/blob/master/examples/src/main/scala/shapeless/examples/sexp.scala for an example a hlist instance that uses labels.
# {a: 1, b: 2, c: { d: 3 } } should containJson {a: 1, c: {d: 3}} {a: 1, b: 2, c: { d: 3 } } should beIdenticalTo...
Example { a: 1, b: 2, c: {d: 3, e: 4} } should beIdenticalTo({ a: 1, c: {d: 3, e: 5} }) // fails due to differences { a: 1,...
http://www.w3.org/TR/xquery-update-10/
http://tools.ietf.org/html/rfc5261
I'm planning on making Delta[scala.xml.Node] == scala.xml.Node & Delta[Json] == Json, so this could be applied more generally. Example Set(1, 2).delta(Set(2, 3)) currently is SetPatch(added = Set(3), removed = Set(1)),...