springql_core/expression/boolean_expression/numerical_function.rs
1// 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.
2
3use crate::expression::ValueExprType;
4
5#[derive(Clone, PartialEq, Eq, Hash, Debug)]
6pub enum NumericalFunction<E>
7where
8 E: ValueExprType,
9{
10 /// `+` operation
11 AddVariant { left: Box<E>, right: Box<E> },
12
13 /// `*` operation
14 MulVariant { left: Box<E>, right: Box<E> },
15}