Paul Fultz II

Results 395 comments of Paul Fultz II

It seems like a good idea, especially the concepts used in C++ [here](http://en.cppreference.com/w/cpp/concept). Of course there is no need to define them for concepts like `DefaultConstructible` since it is already...

The tick library is focused on syntactic-based concepts like the ones defined in the Concepts TS. To support the algebraic_traits the library would need more semantic-based concepts, and a framework...

So initial documentation for the traits provided by the library has been added [here](http://tickcpp.readthedocs.io/en/latest/doc/src/traits.html). This should cover the basic concept primitives.

> But I find no such header in the package. What's up with this? The file is [here](https://github.com/pfultz2/Tick/blob/master/tick/traits/is_forward_iterator.h). I am not sure why it missing for you. Its there when...

Is there a way to increase the buffer size used to send audio to coreaudio?

So I added a cmake to install and run the tests. Also, added a [`requirements.txt`](https://github.com/pfultz2/Linq/blob/master/requirements.txt) so when its installed with `cget install pfultz2/Linq`(or through [CMakeGet](https://github.com/pfultz2/cmake-get)), it will install boost. I...

So the new `cmake_paths` generate in conan looks like it would make it simpler to create the conanfile.txt.

I am not sure how possible it is to do everywhere in hana since its common to use `static_assert` to report errors. [Boost.HOF](https://github.com/boostorg/hof) does provide SFINAE-friendly versions for some of...

> hof::unpack does not appear to support hana::Foldable AFAICT. To support `Foldable`, hana would need to specialize [`unpack_sequence`](https://boost-hof.readthedocs.io/en/latest/include/boost/hof/unpack_sequence.html) so it can be unpacked by `boost::hof::unpack`.

You couldn't do something like: ``` cpp template constexpr auto fold_3(Index i, Sequence s, State state, Op op) { auto state1 = op(state, s[i]); auto state2 = op(state1, s[i+1]); return...