|
|
|
@ -36,7 +36,7 @@ |
|
|
|
|
#ifndef __MRW__STRING__HPP__ |
|
|
|
|
#define __MRW__STRING__HPP__ |
|
|
|
|
|
|
|
|
|
#include <mrw/exception.hpp> |
|
|
|
|
#include <mrw/exception.hxx> |
|
|
|
|
#include <string> |
|
|
|
|
#include <sstream> |
|
|
|
|
#include <list> |
|
|
|
@ -186,7 +186,7 @@ namespace mrw { |
|
|
|
|
@endcode |
|
|
|
|
|
|
|
|
|
@param o a value to be converted to std::string |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
@pre T must support operator<< to a stream |
|
|
|
|
*/ |
|
|
|
|
template <typename T> std::string string(const T& o) |
|
|
|
@ -204,7 +204,7 @@ namespace mrw { |
|
|
|
|
|
|
|
|
|
@throw mrw::invalid_argument if value can not be created from string |
|
|
|
|
@param s the string where a value of type @c T is extracted from |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
@pre T must support operator>> from a stream |
|
|
|
|
@pre operator>> from T must not throw anything else than std::exception |
|
|
|
|
|
|
|
|
@ -223,7 +223,7 @@ namespace mrw { |
|
|
|
|
|
|
|
|
|
@code |
|
|
|
|
std::list<std::string> l; |
|
|
|
|
l<<"hello"<<"world"; // needs mrw/list.hpp
|
|
|
|
|
l<<"hello"<<"world"; // needs mrw/list.hxx
|
|
|
|
|
std::string hello_world(mrw::join(l)); |
|
|
|
|
// hello_world is now "hello world"
|
|
|
|
|
@endcode |
|
|
|
@ -296,7 +296,7 @@ namespace mrw { |
|
|
|
|
|
|
|
|
|
@param s the string, where o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
@pre T must support operator<< to a stream |
|
|
|
|
*/ |
|
|
|
|
template <typename T> std::string& operator<<(std::string& s, const T& o) |
|
|
|
@ -320,7 +320,7 @@ template <typename T> std::string& operator<<(std::string& s, const T& o) |
|
|
|
|
@note when something is extracted from a string, it is removed |
|
|
|
|
from the string, that means after every shift the string is |
|
|
|
|
shortened by the shifted element |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
@pre T must support operator>> from a stream |
|
|
|
|
|
|
|
|
|
@note The signature has changed: |
|
|
|
@ -343,7 +343,7 @@ template <typename T> std::string& operator>>(std::string& s, T& o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(const std::string& s, unsigned short o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -359,7 +359,7 @@ inline std::string operator+(const std::string& s, unsigned short o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is prepended |
|
|
|
|
@param o the value to prepend in front of @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(unsigned short o, const std::string& s) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -375,7 +375,7 @@ inline std::string operator+(unsigned short o, const std::string& s) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(const std::string& s, unsigned int o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -391,7 +391,7 @@ inline std::string operator+(const std::string& s, unsigned int o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is prepended |
|
|
|
|
@param o the value to prepend in front of @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(unsigned int o, const std::string& s) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -407,7 +407,7 @@ inline std::string operator+(unsigned int o, const std::string& s) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(const std::string& s, unsigned long o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -423,7 +423,7 @@ inline std::string operator+(const std::string& s, unsigned long o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is prepended |
|
|
|
|
@param o the value to prepend in front of @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(unsigned long o, const std::string& s) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -439,7 +439,7 @@ inline std::string operator+(unsigned long o, const std::string& s) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(const std::string& s, signed short o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -455,7 +455,7 @@ inline std::string operator+(const std::string& s, signed short o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is prepended |
|
|
|
|
@param o the value to prepend in front of @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(signed short o, const std::string& s) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -471,7 +471,7 @@ inline std::string operator+(signed short o, const std::string& s) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(const std::string& s, signed int o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -487,7 +487,7 @@ inline std::string operator+(const std::string& s, signed int o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is prepended |
|
|
|
|
@param o the value to prepend in front of @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(signed int o, const std::string& s) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -503,7 +503,7 @@ inline std::string operator+(signed int o, const std::string& s) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(const std::string& s, signed long o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -519,7 +519,7 @@ inline std::string operator+(const std::string& s, signed long o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is prepended |
|
|
|
|
@param o the value to prepend in front of @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string operator+(signed long o, const std::string& s) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -536,7 +536,7 @@ inline std::string operator+(signed long o, const std::string& s) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string& operator+=(std::string& s, unsigned short o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -552,7 +552,7 @@ inline std::string& operator+=(std::string& s, unsigned short o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string& operator+=(std::string& s, unsigned int o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -568,7 +568,7 @@ inline std::string& operator+=(std::string& s, unsigned int o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string& operator+=(std::string& s, unsigned long o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -584,7 +584,7 @@ inline std::string& operator+=(std::string& s, unsigned long o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string& operator+=(std::string& s, signed short o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -600,7 +600,7 @@ inline std::string& operator+=(std::string& s, signed short o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string& operator+=(std::string& s, signed int o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
@ -616,7 +616,7 @@ inline std::string& operator+=(std::string& s, signed int o) |
|
|
|
|
|
|
|
|
|
@param s the string, where @c o is appended |
|
|
|
|
@param o the value to append to @c s |
|
|
|
|
@pre \#include <mrw/string.hpp> |
|
|
|
|
@pre \#include <mrw/string.hxx> |
|
|
|
|
*/ |
|
|
|
|
inline std::string& operator+=(std::string& s, signed long o) |
|
|
|
|
throw(std::bad_exception) { |
|
|
|
|