FlatImage
A configurable Linux containerization system
Loading...
Searching...
No Matches
ns_concept::StringConstructible Concept Reference

Concept for types that can construct a std::string. More...

#include <concept.hpp>

Concept definition

template<typename T>
concept ns_concept::StringConstructible = std::constructible_from<std::string, std::remove_cvref_t<T>>
Concept for types that can construct a std::string.
Definition concept.hpp:365

Detailed Description

Concept for types that can construct a std::string.

Template Parameters
TThe type to check

Example: const char*, std::string_view, iterators

Definition at line 365 of file concept.hpp.