VapourSynth-llvmexpr
Loading...
Searching...
No Matches
infix2postfix::stdlib::IsLibrary Concept Reference

#include <llvmexpr/frontend/infix2postfix/stdlib/LibraryBase.hpp>

Concept definition

template<typename T>
concept IsLibrary = requires {
{ T::NAME } -> std::convertible_to<std::string_view>;
{ T::CODE } -> std::convertible_to<std::string_view>;
typename T::dependencies;
{ T::EXPORTS };
}

Detailed Description

Definition at line 40 of file LibraryBase.hpp.