// This file is part of https://github.com/SpringQL/SpringQL which is licensed under MIT OR Apache-2.0. See file LICENSE-MIT or LICENSE-APACHE for full license details.
usecrate::expression::ValueExprType;#[derive(Clone, PartialEq, Eq, Hash, Debug)]pubenumNumericalFunction<E>
where
E: ValueExprType,
{/// `+` operation
AddVariant { left:Box<E>, right:Box<E>},/// `*` operation
MulVariant { left:Box<E>, right:Box<E>},}