| 969 | } |
| 970 | |
| 971 | any_map::ordered_any_map::const_iterator |
| 972 | any_map::endOM_TypeChecked() const |
| 973 | { |
| 974 | assert(type == ORDERED_MAP |
| 975 | && "You are calling endOM_TypeChecked() on map " |
| 976 | "whose type is not ORDERED_MAP."); |
| 977 | return map.o->end(); |
| 978 | } |
| 979 | |
| 980 | any_map::ordered_any_map::const_iterator |
| 981 | any_map::findOM_TypeChecked(key_type const& key) const |
no test coverage detected