We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add variadic_helpers.hpp
get_type<i, Types...>
get_value<i>(values...)
for_each_type<Types...>(lambda)
for_each_value(lambda, Types&& values...)
for_each_type and for_each_value will invoke a callable with the current index and current type/value.
for_each_type
for_each_value
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add variadic_helpers.hpp
get_type<i, Types...>
, gets a type by indexget_value<i>(values...)
, gets an argument by indexfor_each_type<Types...>(lambda)
, visits all typesfor_each_value(lambda, Types&& values...)
, visits all valuesfor_each_type
andfor_each_value
will invoke a callable with the current index and current type/value.The text was updated successfully, but these errors were encountered: