using_(
auto values = {1, 2, 3, 4, 5}) {
cout << string::join(", ", values) << endl;
}
#define using_(...)
The specified expression is cleared automatically when the scope is ended.
Definition using.h:33
same as : using_(
auto values = {1, 2, 3, 4, 5})
cout << string::join(", ", values) << endl;
same as : {
auto values = {1, 2, 3, 4, 5};
cout << string::join(", ", values) << endl;
}