6 #ifndef IROHA_TO_LOWER_HPP 7 #define IROHA_TO_LOWER_HPP 13 inline std::string &
toLowerAppend(std::string_view src, std::string &dst) {
14 dst.reserve(dst.size() + src.size());
15 for (
auto const c : src) dst += std::tolower(c);
20 #endif // IROHA_TO_LOWER_HPP std::string & toLowerAppend(std::string_view src, std::string &dst)
Definition: to_lower.hpp:13
Definition: block_query.hpp:15