|
using | key_type = Key |
|
using | mapped_type = Value |
|
using | allocator_type = Allocator |
|
using | value_type = std::pair<key_type, mapped_type> |
|
using | container_type = std::list<value_type, allocator_type> |
|
using | size_type = typename container_type::size_type |
|
using | difference_type = typename container_type::difference_type |
|
using | iterator = typename container_type::iterator |
|
using | const_iterator = typename container_type::const_iterator |
|
using | reverse_iterator = std::reverse_iterator<iterator> |
|
using | const_reverse_iterator = std::reverse_iterator<const_iterator> |
|
using | reference = value_type & |
|
using | const_reference = const value_type & |
|
using | pointer = typename std::allocator_traits<allocator_type>::pointer |
|
using | const_pointer |
|