#include <string>
#include <sstream>
#include <fstream>
Go to the source code of this file.
|
| std::string const & | csv::replace (std::string &src, std::string const &to_find, std::string const &to_replace) |
| |
| std::string | csv::trim_right (const std::string &str, const std::string &trimChars) |
| |
| std::string | csv::trim_left (const std::string &str, const std::string &trimChars) |
| |
| std::string | csv::trim (const std::string &str, const std::string &trimChars) |
| |
| template<typename T > |
| csv::ifstream & | operator>> (csv::ifstream &istm, T &val) |
| |
| template<> |
| csv::ifstream & | operator>> (csv::ifstream &istm, std::string &val) |
| |
| template<typename T > |
| csv::ofstream & | operator<< (csv::ofstream &ostm, const T &val) |
| |
| template<typename T > |
| csv::ofstream & | operator<< (csv::ofstream &ostm, const T *val) |
| |
| template<> |
| csv::ofstream & | operator<< (csv::ofstream &ostm, const std::string &val) |
| |
| template<> |
| csv::ofstream & | operator<< (csv::ofstream &ostm, const char &val) |
| |
| template<> |
| csv::ofstream & | operator<< (csv::ofstream &ostm, const char *val) |
| |
| template<typename T > |
| csv::istringstream & | operator>> (csv::istringstream &istm, T &val) |
| |
| template<> |
| csv::istringstream & | operator>> (csv::istringstream &istm, std::string &val) |
| |
| template<typename T > |
| csv::ostringstream & | operator<< (csv::ostringstream &ostm, const T &val) |
| |
| template<typename T > |
| csv::ostringstream & | operator<< (csv::ostringstream &ostm, const T *val) |
| |
| template<> |
| csv::ostringstream & | operator<< (csv::ostringstream &ostm, const std::string &val) |
| |
| template<> |
| csv::ostringstream & | operator<< (csv::ostringstream &ostm, const char &val) |
| |
| template<> |
| csv::ostringstream & | operator<< (csv::ostringstream &ostm, const char *val) |
| |
◆ NEWLINE
◆ operator<<() [1/10]
◆ operator<<() [2/10]
◆ operator<<() [3/10]
◆ operator<<() [4/10]
◆ operator<<() [5/10]
◆ operator<<() [6/10]
◆ operator<<() [7/10]
◆ operator<<() [8/10]
◆ operator<<() [9/10]
◆ operator<<() [10/10]
◆ operator>>() [1/4]
◆ operator>>() [2/4]
◆ operator>>() [3/4]
◆ operator>>() [4/4]