|
| string | itos (int i) |
| | integer to string with default formating More...
|
| |
| string | itos (int i, const char *) |
| | integer to string with printf formating string More...
|
| |
| string | ftos (double i) |
| | integer to string with default formating More...
|
| |
| string | ftos (double i, const char *) |
| | integer to string with printf formating string More...
|
| |
| template<typename T > |
| T | abs (T v) |
| | absolute function for all types More...
|
| |
| template<class T , class A > |
| list< T, A > & | operator+= (list< T, A > &l1, const list< T, A > &l2) |
| | += operators for list (list concat) More...
|
| |
| template<class T , class A > |
| list< T, A > & | operator+= (list< T, A > &l1, const T &v) |
| | += operators for list (append) More...
|
| |
| template<class T , class A > |
| list< T, A > | operator+ (const list< T, A > &l1, const list< T, A > &l2) |
| |
| template<typename Col , typename T > |
| bool | removeElement (Col &col, const T &elem) |
| |
| template<typename A , typename E > |
| A | reduceList (std::list< E > list, A acc, std::function< A(A, E)> f) |
| |
| template<typename O , typename I > |
| std::list< O > | mapList (const std::list< I > &l, std::function< O(const I &)> fun) |
| |
contains some additions to the standard template library