template<typename F>
concept Wizt::RenderLambda =
requires(F f,
const VRenderContext& ctx,
typename render_lambda_signature<F>::slot_type slot)
{
{ f(ctx, slot) } -> std::same_as<typename render_lambda_signature<F>::return_type>;
}
Definition RenderBasin.hpp:73