xtd 0.2.0
Loading...
Searching...
No Matches
key_value_pair.h
Go to the documentation of this file.
1
4#pragma once
5#include <utility>
6
8namespace xtd {
10 namespace collections {
12 namespace generic {
28 template<typename key_t, typename value_t>
29 using key_value_pair = std::pair<key_t, value_t>;
30 }
31 }
32}
std::pair< key_t, value_t > key_value_pair
Defines a key/value pair that can be set or retrieved.
Definition key_value_pair.h:29
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10