value_type and pair classes

  • Thread starter Hatzigiannakis Nikos
  • Start date
H

Hatzigiannakis Nikos

What is actualy the value_type class in a map container?

Is it a synonym of the pair prototype class?
 
K

Kai-Uwe Bux

Hatzigiannakis said:
What is actualy the value_type class in a map container?

std::map< From, To > has the following typedefs:

key_type = From
mapped_type = To
value_type = std::pair< const From, To >


Best

Kai-Uwe Bux
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top