| 68 | } |
| 69 | |
| 70 | void |
| 71 | BoxList::join (const BoxList& blist) |
| 72 | { |
| 73 | BL_ASSERT(blist.size() == 0 || ixType() == blist.ixType()); |
| 74 | m_lbox.insert(std::end(m_lbox), std::begin(blist), std::end(blist)); |
| 75 | } |
| 76 | |
| 77 | void |
| 78 | BoxList::join (const Vector<Box>& barr) |