-
I'm setting the completion of this incredible tool now but I have trouble understanding these two statements, can someboby explain the meaning of them? Thanks a lot. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If, for some reason, you do not want an alias to be expanded, you can specify it in the |
Beta Was this translation helpful? Give feedback.
template_size
is the number of template arguments a specific class requires. For example,pair
requires two template arguments,vector
requires one template argument, andint
requires 0 template arguments.If, for some reason, you do not want an alias to be expanded, you can specify it in the
dont_expand
option. For instance, normally,vpii
is expanded intovector<pair<int, int>>
. However, if you addpii
to thedont_expand
list, thenvpii
will be expanded only tovector<pii>
.