xtd 0.2.0
Loading...
Searching...
No Matches
format_pair.cpp

Show how to use format xtd::format class with std::pair.

#include <xtd/xtd>
#include <utility>
auto main() -> int {
console::out << string::format("{}", std::make_pair(1, "one")) << environment::new_line;
}
// This code produces the following output :
//
// (1, one)