#include <algorithm>
#include <cstring>
#include <hpp/util/config.hh>
#include <iterator>
#include <string>
#include <vector>
Go to the source code of this file.
|
| template<typename InputIt, typename Predicate> |
| bool | hpp::util::string_split (InputIt first, InputIt last, const char &c, Predicate p) |
| |
| template<typename InputIt, typename Predicate> |
| bool | hpp::util::string_split (InputIt first, InputIt last, const char *c, Predicate p) |
| |
| template<typename InputIt> |
| std::vector< std::string > | hpp::util::string_split (InputIt first, InputIt last, const char &c) |
| |
| template<typename InputIt> |
| std::vector< std::string > | hpp::util::string_split (InputIt first, InputIt last, const char *c) |
| |
| bool | hpp::util::iequal (const std::string &a, const std::string &b) |
| |