-
Notifications
You must be signed in to change notification settings - Fork 258
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
declarations in metafunctions #809
declarations in metafunctions #809
Conversation
An example for my usecase is implemented in dfb1113. What we do is to implement some operators and add them to an expression framework. In order to that, we need to overload the original operator for the expression types. E.g. you have
For functions with more than 2 arguments this can get quite large, since we need dfb1113 also just adds the variants for the binary expression. But it would be quite simple to write a general |
Thanks for the comments. If there is nothing else, I would remove my examples and squash the commits. |
Provide transparent SFINAE. Forward `noexcept`. Accept object with unparenthesized comma like `v<a, b>`. Disable UFCS in `f := t().f();`. Do not capture in signatures. Incidentially, merge the UFCS macros.
4552e37
to
ad7f3b9
Compare
Cleaned up the merge request and updated the first comment. Removed WIP status. |
Hi! Sorry it took me so long to get to this one. I'm going to close it as probably-dated now, but if you want to pursue it please reopen and refresh. Thanks again, and sorry again for the lag. |
New:
This merge request adds the new function 'add_declaration_to_parent_namespace
in the
compiler_services`. This allows metafunctions to add declarations to the outer namespace of the current declaration.One example of such a use case would be to create a make function:
The merge request depends on #506. One of the unique pointer declarations caused one of the corner cases in UFCS.
Old:
I wanted to play around a little bit with my own metafunctions. For my application I need to declare something outside of the structure, that "calls" the metafunction.
Patch 5a04b1d adds this functionality and 3ea209b provides an example implementation. It creates a
make_<name>
function like the ones formake_tuple
.I wanted to post this here so I can get some feedback on the implementation. It probably needs to be polished a little bit. One question would be if the member
metafunction_declarations
is the right approach?