pub fn not_between<'a, V, E, L, H>(
expr: E,
low: L,
high: H,
) -> SQLExpr<'a, V, <V::DialectMarker as DialectTypes>::Bool, NonNull, <<E::Aggregate as AggOr<<L as ComparisonOperand<'a, V, E::SQLType>>::Aggregate>>::Output as AggOr<<H as ComparisonOperand<'a, V, E::SQLType>>::Aggregate>>::Output>where
V: SQLParam + 'a,
E: Expr<'a, V>,
L: ComparisonOperand<'a, V, E::SQLType>,
H: ComparisonOperand<'a, V, E::SQLType>,
E::Aggregate: AggOr<<L as ComparisonOperand<'a, V, E::SQLType>>::Aggregate>,
<E::Aggregate as AggOr<<L as ComparisonOperand<'a, V, E::SQLType>>::Aggregate>>::Output: AggOr<<H as ComparisonOperand<'a, V, E::SQLType>>::Aggregate>,Expand description
NOT BETWEEN comparison.
Requires expr type to be compatible with both bounds.