[][src]Type Definition descent::expr::fixed::ExprFixSum

type ExprFixSum = Vec<ExprFix>;

Represents the sum of multiple fixed expressions.

This enables some more runtime flexibility without having to resort to a ExprDyn.

Trait Implementations

impl Add<ExprFix> for ExprFixSum[src]

type Output = ExprFixSum

The resulting type after applying the + operator.

impl From<ExprFix> for ExprFixSum[src]