| 293 | } |
| 294 | |
| 295 | BoxList |
| 296 | complementIn (const Box& b, const BoxList& bl) |
| 297 | { |
| 298 | BL_ASSERT(bl.ixType() == b.ixType()); |
| 299 | BoxList newb(b.ixType()); |
| 300 | newb.complementIn(b,bl); |
| 301 | return newb; |
| 302 | } |
| 303 | |
| 304 | BoxList& |
| 305 | BoxList::complementIn (const Box& b, const BoxList& bl) |
no test coverage detected