contains some additions to the standard template library More...
Classes | |
| struct | join |
Functions | |
| string | itos (int i) |
| integer to string with default formating | |
| string | itos (int i, const char *) |
| integer to string with printf formating string | |
| template<typename T > | |
| T | abs (T v) |
| absolute function for all types | |
| template<class T , class A > | |
| list< T, A > & | operator+= (list< T, A > &l1, const list< T, A > &l2) |
| += operators for list (list concat) | |
| template<class T , class A > | |
| list< T, A > & | operator+= (list< T, A > &l1, const T &v) |
| += operators for list (append) | |
| template<class T , class A > | |
| list< T, A > | operator+ (const list< T, A > &l1, const list< T, A > &l2) |
| + operators for lists (list concat) | |
| template<typename Col , typename T > | |
| bool | removeElement (Col &col, const T &elem) |
contains some additions to the standard template library
| T std::abs | ( | T | v | ) | [inline] |
absolute function for all types
| string itos | ( | int | i, | |
| const char * | format | |||
| ) |
integer to string with printf formating string
| string itos | ( | int | i | ) |
integer to string with default formating
| list<T,A> std::operator+ | ( | const list< T, A > & | l1, | |
| const list< T, A > & | l2 | |||
| ) | [inline] |
+ operators for lists (list concat)
| list<T,A>& std::operator+= | ( | list< T, A > & | l1, | |
| const T & | v | |||
| ) | [inline] |
+= operators for list (append)
| list<T,A>& std::operator+= | ( | list< T, A > & | l1, | |
| const list< T, A > & | l2 | |||
| ) | [inline] |
+= operators for list (list concat)
| bool std::removeElement | ( | Col & | col, | |
| const T & | elem | |||
| ) | [inline] |
1.6.3