Compounds | |
| class | Util::GeneralException |
| class | Util::Matrix |
Functions | |
| template<class T> void | operator>> (std::istream &instream, Matrix< T > &mat) |
| template<class T> T | min (const T &a, const T &b) |
| template<class T> ListOpResult | safeIteratorRemove (list< T > &l, list< T >::iterator &i) |
| template<class T> ListOpResult | safeIteratorSwap (list< T > &src, list< T > &dst, list< T >::iterator &i) |
| template<class container> void | freeDynamicContainer (container &c) |
| string | getNextIdentifier (istream &input, set< char > &terminatingSet) |
| void | makeLowercase (string &str) |
| template<class T> std::string | toString (const T &val) |
| void | eraseSpaces (string &str) |
|
|
Definition at line 9 of file STL_Helper.h. |
|
|
Removes all spaces from a string Definition at line 45 of file StringUtil.cpp. |
|
||||||||||
|
Deletes all values of an STL style container of pointers, and clears the container Definition at line 55 of file STL_Helper.h. |
|
||||||||||||
|
Function used in parsing an input stream.
Definition at line 22 of file StringUtil.cpp. |
|
|
Replaces all upper case characters in string with lowercase characters Definition at line 39 of file StringUtil.cpp. |
|
||||||||||||||||
|
Returns minimum of any two objects with < overloaded Definition at line 37 of file STL_Helper.h. |
|
||||||||||||||||
|
Reads a space delimited input stream of mat.numRows() * mat.numCols() of T. Requires that T has operator>> (std::istream, T&) overloaded |
|
||||||||||||||||
|
Removes (does NOT delete) the object pointed by an iterator from a list, increments iterator after removal
Definition at line 42 of file STL_Helper.h. |
|
||||||||||||||||||||
|
Definition at line 50 of file STL_Helper.h. |
|
||||||||||
|
Converts any type T to string if it has operator<< (std::ostream&, const T&) defined Definition at line 52 of file StringUtil.h. |
1.2.12 written by Dimitri van Heesch,
© 1997-2001