Set the multi option policy to take last
| 3450 | |
| 3451 | /// Set the multi option policy to take last |
| 3452 | CRTP *take_last() { |
| 3453 | auto self = static_cast<CRTP *>(this); |
| 3454 | self->multi_option_policy(MultiOptionPolicy::TakeLast); |
| 3455 | return self; |
| 3456 | } |
| 3457 | |
| 3458 | /// Set the multi option policy to take last |
| 3459 | CRTP *take_first() { |
nothing calls this directly
no test coverage detected