Set the multi option policy to take last
| 3457 | |
| 3458 | /// Set the multi option policy to take last |
| 3459 | CRTP *take_first() { |
| 3460 | auto self = static_cast<CRTP *>(this); |
| 3461 | self->multi_option_policy(MultiOptionPolicy::TakeFirst); |
| 3462 | return self; |
| 3463 | } |
| 3464 | |
| 3465 | /// Set the multi option policy to take all arguments |
| 3466 | CRTP *take_all() { |
nothing calls this directly
no test coverage detected