#pragma once #include #include #include "string_utils/cast.h" #include "string_utils/tokenizer.h" namespace string_utils { template struct cast_helper{}>> { bool operator()(std::string_view str, Tuple &to) const noexcept { return maybe_cast>(tokenizer(",")(std::string(str)), to); } }; }