parse_multiplicative

Function parse_multiplicative 

Source
pub fn parse_multiplicative<P>(parser: &mut P) -> Result<SqlExpression, String>
where P: ParseArithmetic + ?Sized,
Expand description

Parse a multiplicative expression (*, /, % operators and method calls) This handles left-associative binary operators at the multiplicative precedence level Also handles method calls (.) which have the same precedence as multiplication