| 807 | } |
| 808 | |
| 809 | any_map::size_type |
| 810 | any_map::size() const |
| 811 | { |
| 812 | switch (type) |
| 813 | { |
| 814 | case map_type::ORDERED_MAP: |
| 815 | return o_m().size(); |
| 816 | case map_type::UNORDERED_MAP: |
| 817 | return uo_m().size(); |
| 818 | case map_type::UNORDERED_MAP_CASEINSENSITIVE_KEYS: |
| 819 | return uoci_m().size(); |
| 820 | default: |
| 821 | throw std::logic_error("invalid map type"); |
| 822 | } |
| 823 | } |
| 824 | |
| 825 | any_map::size_type |
| 826 | any_map::count(any_map::key_type const& key) const |
no outgoing calls