-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
boost::mp11::mp_transform is not SFINAE friendly on transform error #101
Comments
C++20 implementations aren't of much help to me; the library supports C++11 and up. |
c++11 version could be found below or on godbolt.
|
The problem with using the generic implementation is that it's much, much slower than the specialized variants for 1/2/3 lists. I'll see what can be done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example could be found below or on godbolt. boost::mp11::mp_transform is not SFINAE friendly on transform error. It is SFINAE friendly on size mismatch though. It would be very helpful in constraints if it is SFINAE friendly.
An example implementation for c++20 could be found below or on godbolt.
The text was updated successfully, but these errors were encountered: