| 891 | } |
| 892 | |
| 893 | cmList cmList::GetItems(std::vector<index_type>&& indexes) const |
| 894 | { |
| 895 | cmList listItems; |
| 896 | |
| 897 | for (auto index : indexes) { |
| 898 | listItems.emplace_back(this->get_item(index)); |
| 899 | } |
| 900 | |
| 901 | return listItems; |
| 902 | } |
| 903 | |
| 904 | cmList& cmList::RemoveItems(std::vector<index_type>&& indexes) |
| 905 | { |
no test coverage detected