Skip to content

Concept expression_arguments

concept expression_arguments base

template <typename... E>
concept expression_arguments = (input_expression<E> && ...) && (expression_argument<E> || ...)

Concept satisfied when all E are input expressions and at least one of them is an explicit operand.

Template parameters
E Pack of types to check.

Fully qualified name: kfr::expression_arguments

This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.