0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C++ - What is mapped_type, key_type and value_type?

Last updated at Posted at 2018-10-02

In other words, it's just alias name. And this is C++ 11 standard.

Member type Definition
key_type Key
mapped_type T
value_type std::pair<const Key, T>
value_type = pair<const key_type, mapped_type>

https://en.cppreference.com/w/cpp/container/map
https://stackoverflow.com/questions/31359960/what-is-mapped-type-and-key-type
https://blog.scloudyy.com/posts/4c435fff/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?