Function espr::parser::integer_literal[][src]

pub fn integer_literal(input: &str) -> ParseResult<'_, u64>
Expand description

141 integer_literal = digits .

Negative integer, e.g. -23, will be represented by the combination of - unary operator and integer literal 23