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
make_request<...>(...)
Since the request<...> class has to be a POD, we should add make_request functions that
request<...>
make_request
make_request<...>()
make_request<1, ...>(request<0>)
make_request<2, ...>(request<0>)
And similarly make_request_data. Of course, they should be unit tested. Then, they can be used used in:
make_request_data
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since the
request<...>
class has to be a POD, we should addmake_request
functions thatmake_request<...>()
: Default initialise all values, e.g. the node carry with nilmake_request<1, ...>(request<0>)
Copy over all values and set the node carry to nilmake_request<2, ...>(request<0>)
Copy over all values and set the node carry to nil. Similarly for the argument having only one node carry.And similarly
make_request_data
. Of course, they should be unit tested. Then, they can be used used in:The text was updated successfully, but these errors were encountered: