ALib C++ Library
Library Version: 2510 R0
Documentation generated by doxygen
Loading...
Searching...
No Matches
alib::strings::IsAppendable Concept Reference

Description:

This concept tests whether for type T, a specialization of the type trait AppendableTraits exists, which has a valid call-operator() that accepts a target string and a const reference to an instance of T.

Definition at line 74 of file tastring.inl.

Concept definition

template<typename T, typename TChar, typename TAllocator>
concept alib::strings::IsAppendable = requires(TAString<TChar, TAllocator>& target, const T& value) {
{ AppendableTraits<T, TChar, TAllocator>()(target, value) } -> std::same_as<void>;
}