Paul Fultz II

Results 212 comments of Paul Fultz II

In addition, one problem with this is approach is that forwarding references can't be used. It might be better to have it called like this: `unpacker(sequence)(sequence, f)` instead. Although it...

So it looks like the workaround for MSVC no longer works. You can try disabling the workaround [here](https://github.com/boostorg/hof/blob/develop/include/boost/hof/lift.hpp#L89) by changing `#if defined (_MSC_VER)` to `#if 0`. If that works then...

What is `_MSC_VER` set to for VS2017 Update 7?

Interesting, as a native english speaker evaluable doesn't sound correct, but it looks like its widely used.

`fit::compress` doesn't use sequences, but if you want to do fold over a sequence, you can simply do `unpack(compress(f))(seq)`.

> My concern is that we have a lot of functions that work already on tuples. There are no functions in Fit that work on tuples except `fit::unpack`. What are...

> I mean a function with two arguments A and B and having as result a type C So a function like this: ``` cpp template C foo(A a, B...

> Do you have concrete examples where the user has T... and not a sequence? There are a lot of examples. Creating variadiac `and_` function(which is useful due to lack...

I mainly did this to avoid confusing it with `fold` done over a sequence.