James Brock
James Brock
ado
I think the *Syntax* page should explain `ado`? https://github.com/purescript/documentation/blob/52282671d755a37f9acaaaa8570c760487dd920b/language/Syntax.md
> So what I have been doing is keeping an uncommitted `package.json` around the folders. For instance this in `purs-tidy`: > > ```json > { > "name": "purs-tidy", > "version":...
Hi Chris! I was moved by reading this line your README > `lens-regex-pcre` only uses `pcre-heavy` for __finding__ the matches, not substitution/replacement. to benchmark `lens-regex-pcre` in my [`replace-benchmark`](https://github.com/jamesdbrock/replace-benchmark) suite. I...
https://www.internalpointers.com/post/writing-custom-iterators-modern-cpp `std::forward_iterator_tag`?
It's likely that this template usage code https://github.com/jamesdbrock/hffix/blob/786519d22acdd017660b8eefc91f226587d1fed6/test/src/reader01.cpp#L40 calls `init` twice now, which would be inefficient, as noted by @mvanslobbe in #32
Can this be described as a "packed representation"? https://www.tweag.io/blog/2017-08-24-linear-types-packed-data/ https://drops.dagstuhl.de/opus/volltexte/2017/7273/
link to FIX Session-level Test Cases and Expected Behaviors is dead.
hffix::message_reader::calculate_check_sum() should be const
Split out the buffer-management features of message_reader and message_writer into separate classes? The issue I guess comes down to ```c++ for (; reader.is_complete(); reader = reader.next_message_reader()) { ``` and ```c++...