shell-cmd v1.2
Recursively find files matching a regex and execute a shell command for each match.
Loading...
Searching...
No Matches
StringType Concept Reference

#include <argz.hpp>

Concept definition

template<typename T>
concept StringType = std::is_class_v<T> && requires(T type) {
type.length();
type[0];
type += type;
type = type;
typename T::value_type;
typename T::size_type;
{ type.length() } -> std::same_as<typename T::size_type>;
{ type[0] } -> std::same_as<typename T::value_type &>;
{ type += T{} } -> std::same_as<T &>;
{ type = T{} } -> std::same_as<T &>;
}

Detailed Description

Definition at line 16 of file argz.hpp.