| 996 | } |
| 997 | |
| 998 | any_map::unordered_any_map::const_iterator |
| 999 | any_map::endUO_TypeChecked() const |
| 1000 | { |
| 1001 | assert(type == UNORDERED_MAP |
| 1002 | && "You are calling endUO_TypeChecked() on map " |
| 1003 | "whose type is not UNORDERED_MAP."); |
| 1004 | return map.uo->end(); |
| 1005 | } |
| 1006 | |
| 1007 | any_map::unordered_any_map::const_iterator |
| 1008 | any_map::findUO_TypeChecked(key_type const& key) const |
no test coverage detected