Set the multi option policy to take all arguments
| 3464 | |
| 3465 | /// Set the multi option policy to take all arguments |
| 3466 | CRTP *take_all() { |
| 3467 | auto self = static_cast<CRTP *>(this); |
| 3468 | self->multi_option_policy(MultiOptionPolicy::TakeAll); |
| 3469 | return self; |
| 3470 | } |
| 3471 | |
| 3472 | /// Set the multi option policy to join |
| 3473 | CRTP *join() { |
nothing calls this directly
no test coverage detected