Contains a set of useful static methods used by the application.
More...
#include <base.h>
|
template<typename TYPE > |
static std::string | to_string (TYPE val) |
| Converts a value to a string. More...
|
|
template<typename T > |
static void | copy (std::vector< T > &dest, const std::vector< T > &src) |
| Copies a vector. More...
|
|
template<typename T > |
static void | copy (std::vector< std::vector< T > > &dest, const std::vector< std::vector< T > > &src) |
| Copies a vector of vectors. More...
|
|
template<typename T1 , typename T2 > |
static void | copy (std::multimap< T1, T2 > &dest, const std::multimap< T1, T2 > &src) |
| Copies a multimap. More...
|
|
Contains a set of useful static methods used by the application.
template<typename T >
static void base::copy |
( |
std::vector< T > & |
dest, |
|
|
const std::vector< T > & |
src |
|
) |
| |
|
inlinestatic |
template<typename T >
static void base::copy |
( |
std::vector< std::vector< T > > & |
dest, |
|
|
const std::vector< std::vector< T > > & |
src |
|
) |
| |
|
inlinestatic |
Copies a vector of vectors.
template<typename T1 , typename T2 >
static void base::copy |
( |
std::multimap< T1, T2 > & |
dest, |
|
|
const std::multimap< T1, T2 > & |
src |
|
) |
| |
|
inlinestatic |
template<typename TYPE >
static std::string base::to_string |
( |
TYPE |
val | ) |
|
|
inlinestatic |
Converts a value to a string.
- Parameters
-
The documentation for this struct was generated from the following file: