| 962 | } |
| 963 | |
| 964 | virtual std::pair <basic_array_iterator <Coord> *, bool> |
| 965 | begin_touching (const box_type &b) const |
| 966 | { |
| 967 | if (b.empty () || ! b.touches (m_box)) { |
| 968 | return std::make_pair (new iterated_array_iterator <Coord> (m_v.end (), m_v.end ()), false); |
| 969 | } else { |
| 970 | box_convert_type bc; |
| 971 | return std::make_pair (new iterated_array_iterator <Coord> (m_v.begin_touching (b, bc)), false); |
| 972 | } |
| 973 | } |
| 974 | |
| 975 | virtual std::pair <basic_array_iterator <Coord> *, bool> |
| 976 | begin () const |
nothing calls this directly
no test coverage detected