| 974 | } |
| 975 | |
| 976 | bool |
| 977 | BoxArray::contains (const IntVect& iv) const |
| 978 | { |
| 979 | if (size() > 0) { |
| 980 | return intersects(Box(iv,iv,ixType())); |
| 981 | } else { |
| 982 | return false; |
| 983 | } |
| 984 | } |
| 985 | |
| 986 | bool |
| 987 | BoxArray::contains (const Box& b, bool assume_disjoint_ba, const IntVect& ng) const |
nothing calls this directly
no test coverage detected