use ToSchema;
/// Represents mathematical or aggregation operations that can be applied
/// during a merge or combination process of geometric objects or curves.
///
/// This enum defines the possible operations when merging or combining multiple
/// data sets, such as curves or points. It is commonly used with the `Arithmetic` trait
/// to specify how values should be combined during geometric operations.
///
/// # Operations
///
/// * `Add` - Performs addition of values (a + b)
/// * `Subtract` - Performs subtraction of values (a - b)
/// * `Multiply` - Performs multiplication of values (a * b)
/// * `Divide` - Performs division of values (a / b), with appropriate error handling for division by zero
/// * `Max` - Selects the maximum value between operands (max(a, b))
/// * `Min` - Selects the minimum value between operands (min(a, b))
///
/// The operation specified will determine how values are combined when merging
/// geometric objects that implement the `Arithmetic` trait.