Optional yet conventional non-member function (forwards to member function)
| 23 | |
| 24 | // Optional yet conventional non-member function (forwards to member function) |
| 25 | void swap(Truckload& one, Truckload& other) noexcept |
| 26 | { |
| 27 | one.swap(other); |
| 28 | } |
| 29 | |
| 30 | Truckload::Iterator Truckload::getIterator() const { return Iterator{ m_boxes }; } |
| 31 |