Struct wast::lexer::Integer [−][src]
pub struct Integer<'a>(_);
A parsed integer, signed or unsigned.
Methods can be use to access the value of the integer.
Implementations
impl<'a> Integer<'a>
[src]
impl<'a> Integer<'a>
[src]pub fn sign(&self) -> Option<SignToken>
[src]
Returns the sign token for this integer.
pub fn src(&self) -> &'a str
[src]
Returns the original source text for this integer.
pub fn val(&self) -> (&str, u32)
[src]
Returns the value string that can be parsed for this integer, as well as the base that it should be parsed in