Mark Melton

Results 5 comments of Mark Melton

I implemented `generator_view` (modeled from `istream_view`) which allows me to write the following code: ``` coro::Generator counter(int n) { for (auto i = 0; i < n; ++i) co_yield i;...

So I have `group_n` (produces a range of ranges with each subrange containing `n` elements where `n` is given by a range) working for a simple test: Note 1. `v::chr::alpha()`...

This is my implementation of `group_n`. It doesn't include any optimizations for forward_iterator, but otherwise is functional. Example usage: ``` TEST(View, GroupNFixed) { strings expected = { "abcd", "efgh", "ijkl",...

@cjdb: The code seems to be dancing around some gcc inconsistencies here. Using gcc-8.2.0 on OSX, the compilation fails without the `-Wall` flag, but succeeds with it. On Ubuntu gcc-8.1.0,...

I've narrowed this down to the following: I have a library that uses os-lib internally and when I import that library in a Jupyter notebook using almond, the ammonite.ops that...