| 791 | } |
| 792 | |
| 793 | bool |
| 794 | any_map::empty() const |
| 795 | { |
| 796 | switch (type) |
| 797 | { |
| 798 | case map_type::ORDERED_MAP: |
| 799 | return o_m().empty(); |
| 800 | case map_type::UNORDERED_MAP: |
| 801 | return uo_m().empty(); |
| 802 | case map_type::UNORDERED_MAP_CASEINSENSITIVE_KEYS: |
| 803 | return uoci_m().empty(); |
| 804 | default: |
| 805 | throw std::logic_error("invalid map type"); |
| 806 | } |
| 807 | } |
| 808 | |
| 809 | any_map::size_type |
| 810 | any_map::size() const |
no outgoing calls