Optional yet conventional non-member function (forwards to member function)
| 82 | |
| 83 | // Optional yet conventional non-member function (forwards to member function) |
| 84 | void swap(Truckload& one, Truckload& other) noexcept |
| 85 | { |
| 86 | one.swap(other); |
| 87 | } |
| 88 | |
| 89 | Truckload::Iterator Truckload::getIterator() const { return Iterator{ m_head }; } |
| 90 |
no test coverage detected