#ifndef CORE_UTILS_STRING_HH #define CORE_UTILS_STRING_HH 1 #pragma once namespace utils { bool is_whitespace(const std::string& string); } // namespace utils namespace utils { std::string join(const std::vector& strings, const std::string& separator); std::vector split(const std::string& string, const std::string& separator); } // namespace utils namespace utils { std::string trim_whitespace(const std::string& string); } // namespace utils #endif // CORE_UTILS_STRING_HH