Frames White
Frames White
I can't see any changes that could have been causing that on a quick look. But the last builds for the 0.5 current master don't screw up like that https://travis-ci.org/andrewcooke/ParserCombinator.jl/jobs/152686452
Oh did this never get merged?
I can't workout (just from reading) what is causing all these extra displays. I am tempted to try and mock STDOUT with something that will throw an exception at the...
Finally came back to this yesterday, and finished my prototype. It took me a long time to get my head around your code. (Things you call `iter` I would call...
This is because it is falling back to the generic `==` on `AbstractDict`s, which are unordered. ```julia julia> od = OrderedDict(1=>2) OrderedDict{Int64, Int64} with 1 entry: 1 => 2 julia>...
It's really close to `Vector`/`Tuple`, but not quite
I am coming around to being convinced this is useful. Getting `hash` to work should be fine we just do a symmetric operation like `xor`ing the hash of each element....
I like this idea. But it might be too inconsistent with other `AbstractDict`s. What do you think @timholy ?
I was sure @ararslan removed that ages ago. We should just delete it. Only question is if to tag a major or patch release.
It might have happened during the period where the code existed in both places, and it got removed from DataStructures but not removed from OrderedCollections, and so it came back...