template <Operation LeftOp, Operation RightOp, typename... LeftArgs, typename... RightArgs>
struct Expression
Defined at line 226 of file ../../zircon/system/ulib/ffl/include/ffl/expression.h
Specialization for subtraction of subexpressions. This expression node takes
two template arguments for the left-hand and right-hand subexpressions to
subtract.
Public Members
const Expression<LeftOp, LeftArgs...> left
const Expression<RightOp, RightArgs...> right
Public Methods
template <typename L, typename R>
void Expression<Operation::Subtraction, Expression<LeftOp, LeftArgs...>, Expression<RightOp, RightArgs...> > (L && left, R && right)
Defined at line 230 of file ../../zircon/system/ulib/ffl/include/ffl/expression.h
template <typename TargetFormat>
auto Evaluate (TargetFormat target_format)
Defined at line 237 of file ../../zircon/system/ulib/ffl/include/ffl/expression.h