Donner
C++20 SVG rendering library
Loading...
Searching...
No Matches
donner::svg::parser::ListParserItemCallback Concept Reference

Concept requiring a type to be invocable with a std::string_view and return void. More...

#include "donner/svg/parser/ListParser.h"

Concept definition

template<typename F>
concept donner::svg::parser::ListParserItemCallback = std::invocable<F, std::string_view> &&
std::same_as<std::invoke_result_t<F, std::string_view>, void>
Concept requiring a type to be invocable with a std::string_view and return void.
Definition ListParser.h:18

Detailed Description

Concept requiring a type to be invocable with a std::string_view and return void.

Used to constrain the callback function for ListParser.