| 978 | } |
| 979 | |
| 980 | any_map::ordered_any_map::const_iterator |
| 981 | any_map::findOM_TypeChecked(key_type const& key) const |
| 982 | { |
| 983 | assert(type == ORDERED_MAP |
| 984 | && "You are calling findOM_TypeChecked() on map " |
| 985 | "whose type is not ORDERED_MAP."); |
| 986 | return map.o->find(key); |
| 987 | } |
| 988 | |
| 989 | any_map::unordered_any_map::const_iterator |
| 990 | any_map::beginUO_TypeChecked() const |
no test coverage detected