Christopher Armstrong
Christopher Armstrong
I didn't realize that I didn't have integers enabled when running tests until I tried to write integer-specific tests for the new Saturating support I'm working on. When I tried...
I haven't had a chance to dig into this yet but I noticed a crash when trying to create reasonably large `u64` Lengths. This is some example code that fails...
In error-chain, I had stuff like: ```rust ItemAlreadyExists(iid: ItemID) { description("An Item already exists.") display("The Item {} already exists", iid.0) } ``` but it appears that accessing attributes like this...
cabal 1.20.0.0, cabal-install 1.20.0.1 I may be doing something wrong, I'm not super familiar with the Haskell ecosystem yet. But I'm trying to run "cabal install hamtmap" in a sandbox...
Hi, I'm evaluating pathfinding libraries. I like that this one seems to support caching of path analysis for multiple queries, but I can't figure out how to use the library....
the maximums are undocumented anyway, and they are so small (especially width) that they make it impossible to view many standard emails without horizontal scrolling.
HAMT dicts have been implemented in Python, at least twice as far as I know: https://github.com/jml/perfidy/tree/master/perfidy https://github.com/alex/optimizer-model/blob/master/optimizer/utils/persistent_dict.py so you may not have to implement it yourself to include them in...
Just a simple grammar fix.
I expect this program to raise an exception because the `okay` rule never successfully runs: ``` python from hypothesis.stateful import RuleBasedStateMachine, Bundle, rule from hypothesis import assume class StatefulTests(RuleBasedStateMachine): state...
When I'm implementing an API server using JSON for message passing, I want to be able to send the client the details of the error so that client developers can...