Libmagicxx v5.5.0
A C++ wrapper library over the Magic Number Recognition Library.
 
Loading...
Searching...
No Matches
utility::string_converter Concept Reference

Define requirements for a string converter. More...

#include <utility.hpp>

Concept definition

template<typename ValueType, typename StringConverterType>
concept utility::string_converter = std::same_as<
std::invoke_result_t<StringConverterType, ValueType>,
std::string>
Define requirements for a string converter.
Definition utility.hpp:31

Detailed Description

Define requirements for a string converter.

Template Parameters
ValueTypeThe type of the value.
StringConverterTypeThe type of the string converter callable.