The file_container concept specifies the requirements of a container which can be used as a file container by the magic class.
More...
#include <file_concepts.hpp>
template<typename ContainerType>
&& std::default_initializable<ContainerType>
&& std::same_as<
typename ContainerType::value_type,
std::filesystem::path>
&& requires(ContainerType c, std::filesystem::path p) {
c.push_back(p);
c.empty();
typename ContainerType::value_type;
}
The file_container concept specifies the requirements of a container which can be used as a file cont...
Definition file_concepts.hpp:18
The file_container concept specifies the requirements of a container which can be used as a file container by the magic class.