使用多态分配器的容器便利别名 (库基础 TS)
下列使用多態分配器的容器便利別名和別名模板,定義於 std::experimental::pmr
命名空間。
目錄 |
[編輯] 字符串
別名/別名模板 | 所別名者 |
在標頭
<experimental/string> 定義 | |
template<class CharT, class Traits=std::char_traits<CharT>> |
std::basic_string<CharT, Traits, polymorphic_allocator<CharT>>; |
using string = | pmr::basic_string<char>; |
using wstring = | pmr::basic_string<wchar_t>; |
using u16string = | pmr::basic_string<char16_t>; |
using u32string = | pmr::basic_string<char32_t>; |
[編輯] 序列容器
別名模板 | 所別名者 |
在標頭
<experimental/vector> 定義 | |
template<class T> using vector = | std::vector<T, polymorphic_allocator<T>>; |
在標頭
<experimental/deque> 定義 | |
template<class T> using deque = | std::deque<T, polymorphic_allocator<T>>; |
在標頭
<experimental/forward_list> 定義 | |
template<class T> using forward_list = | std::forward_list<T, polymorphic_allocator<T>>; |
在標頭
<experimental/list> 定義 | |
template<class T> using list = | std::list<T, polymorphic_allocator<T>>; |
[編輯] 關聯容器
別名模板 | 所別名者 |
在標頭
<experimental/map> 定義 | |
template<class Key, class T, class Compare=std::less<Key>> |
std::map<Key, T, Compare, polymorphic_allocator<std::pair<const Key, T>>>; |
template<class Key, class T, class Compare=std::less<Key>> |
std::multimap<Key, T, Compare, polymorphic_allocator<std::pair<const Key, T>>>; |
在標頭
<experimental/set> 定義 | |
template<class Key, class Compare=std::less<Key>> |
std::set<Key, Compare, polymorphic_allocator<Key>>; |
template<class Key, class Compare=std::less<Key>> |
std::multiset<Key, Compare, polymorphic_allocator<Key>>; |
[編輯] 無序關聯容器
別名模板 | 所別名者 |
在標頭
<experimental/unordered_map> 定義 | |
template<class Key, class T, class Hash = std::hash<Key>, |
std::unordered_map<Key, T, Hash, Pred, polymorphic_allocator<std::pair<const Key, T>>>; |
template<class Key, class T, class Hash = std::hash<Key>, |
std::unordered_multimap<Key, T, Hash, Pred, polymorphic_allocator<std::pair<const Key, T>>>; |
在標頭
<experimental/unordered_set> 定義 | |
template<class Key, class Hash = std::hash<Key>, |
std::unordered_set<Key, Hash, Pred, polymorphic_allocator<Key>>; |
template<class Key, class Hash = std::hash<Key>, |
std::unordered_multiset<Key, Hash, Pred, polymorphic_allocator<Key>>; |
[編輯] match_results
別名/別名模板 | 所別名者 |
在標頭
<experimental/regex> 定義 | |
template<class BidirIt> using match_results = |
std::match_results<BidirIt, polymorphic_allocator<std::sub_match<BidirIt>>>; |
using cmatch = | pmr::match_results<const char*>; |
using wcmatch = | pmr::match_results<const wchar_t*>; |
using smatch = | pmr::match_results<pmr::string::const_iterator>; |
using wsmatch = | pmr::match_results<pmr::wstring::const_iterator>; |