![]() |
C++ Library Extensions 2022.12.09
To help learn modern C++ programming
|
#include <tpf_output.hpp>Go to the source code of this file.
Classes | |
| class | container_of_tuples_t< ContainerType, ElementTypes > |
Typedefs | |
| template<typename... Types> | |
| using | type_list_t = types::type_list_t< Types... > |
| template<typename... ElementTypes> | |
| using | vector_of_tuples_t = container_of_tuples_t< std::vector, ElementTypes... > |
| template<typename... ElementTypes> | |
| using | deque_of_tuples_t = container_of_tuples_t< std::deque, ElementTypes... > |
| template<typename... ElementTypes> | |
| using | list_of_tuples_t = container_of_tuples_t< std::list, ElementTypes... > |
| template<typename... ElementTypes> | |
| using | set_of_tuples_t = container_of_tuples_t< std::set, ElementTypes... > |
Functions | |
| void | test_container_of_tuples () |
| void | test_set_of_tuples () |
| void | test_list_of_tuples () |
| int | main () |
Variables | |
| tpf::sstream | stream |
| auto | endl = tpf::endl |
| using deque_of_tuples_t = container_of_tuples_t<std::deque, ElementTypes...> |
Definition at line 46 of file 08-container_tuple.cpp.
| using list_of_tuples_t = container_of_tuples_t<std::list, ElementTypes...> |
Definition at line 49 of file 08-container_tuple.cpp.
| using set_of_tuples_t = container_of_tuples_t<std::set, ElementTypes...> |
Definition at line 52 of file 08-container_tuple.cpp.
| using type_list_t = types::type_list_t<Types...> |
Definition at line 9 of file 08-container_tuple.cpp.
| using vector_of_tuples_t = container_of_tuples_t<std::vector, ElementTypes...> |
Definition at line 43 of file 08-container_tuple.cpp.
| int main | ( | ) |
| void test_container_of_tuples | ( | ) |
Definition at line 54 of file 08-container_tuple.cpp.
| void test_list_of_tuples | ( | ) |
Definition at line 89 of file 08-container_tuple.cpp.
| void test_set_of_tuples | ( | ) |
Definition at line 68 of file 08-container_tuple.cpp.
| auto endl = tpf::endl |
Definition at line 4 of file 08-container_tuple.cpp.
| tpf::sstream stream |
Definition at line 3 of file 08-container_tuple.cpp.