#include <string>
#include <vector>
#include <utility>
#include <openvpn/common/size.hpp>
#include <openvpn/common/lex.hpp>
#include <openvpn/common/clamp_typerange.hpp>
Go to the source code of this file.
|
template<typename V , typename LEX , typename LIM > |
void | openvpn::Split::by_char_void (V &ret, const std::string &input, const char split_by, const unsigned int flags=0, const unsigned int max_terms=~0, LIM *lim=nullptr) |
|
template<typename V , typename LEX , typename LIM > |
V | openvpn::Split::by_char (const std::string &input, const char split_by, const unsigned int flags=0, const unsigned int max_terms=~0, LIM *lim=nullptr) |
|
template<typename V , typename LEX , typename SPACE , typename LIM > |
void | openvpn::Split::by_space_void (V &ret, const std::string &input, LIM *lim=nullptr) |
|
template<typename V , typename LEX , typename SPACE , typename LIM > |
V | openvpn::Split::by_space (const std::string &input, LIM *lim=nullptr) |
|