concept that determines if a type is string-like
More...
#include <taskflow/core/graph.hpp>
template<typename T>
concept that determines if a type is string-like
Definition graph.hpp:162
concept that determines if a type is string-like
A type satisfies tf::StringLike if it is convertible to std::string_view, including:
- std::string
- std::string_view
- const char*
- any type that provides an implicit conversion to std::string_view
struct MyString {
operator std::string_view() const { return _data; }
std::string _data;
};