Defined in File pair.hpp
public std::pair< type1, type2 >
Simple pair class extending std::pair.
std::pair
type1 – Type of the first element.
type2 – Type of the second element.
Public Functions
Default constructor.
Constructs a pair from two elements.
first_ – Value copied into the pair first component.
second_ – Value copied into the pair second component.
Constructs from a std::pair.
p_ – Source std::pair copied into this wrapper.
Friends
Stream insertion for formatted printing.
os_ – Output stream receiving the formatted pair.
p_ – Pair value written to os_.
os_
Reference to os_ for stream chaining.