| 987 | } |
| 988 | |
| 989 | any_map::unordered_any_map::const_iterator |
| 990 | any_map::beginUO_TypeChecked() const |
| 991 | { |
| 992 | assert(type == UNORDERED_MAP |
| 993 | && "You are calling beginUO_TypeChecked() on map " |
| 994 | "whose type is not UNORDERED_MAP."); |
| 995 | return map.uo->begin(); |
| 996 | } |
| 997 | |
| 998 | any_map::unordered_any_map::const_iterator |
| 999 | any_map::endUO_TypeChecked() const |
no test coverage detected