| 556 | } |
| 557 | |
| 558 | void splice(iterator pos, list& other) { |
| 559 | if (other.empty()) { |
| 560 | return; |
| 561 | } |
| 562 | splice(pos, other, other.begin(), other.end()); |
| 563 | } |
| 564 | |
| 565 | void splice(iterator pos, list& other, iterator it) { |
| 566 | iterator next = it; |
no test coverage detected