| 960 | } |
| 961 | |
| 962 | any_map::ordered_any_map::const_iterator |
| 963 | any_map::beginOM_TypeChecked() const |
| 964 | { |
| 965 | assert(type == ORDERED_MAP |
| 966 | && "You are calling beginOM_TypeChecked() on map " |
| 967 | "whose type is not ORDERED_MAP."); |
| 968 | return map.o->begin(); |
| 969 | } |
| 970 | |
| 971 | any_map::ordered_any_map::const_iterator |
| 972 | any_map::endOM_TypeChecked() const |
no test coverage detected