Struct flexi_parse::token::LitFloat
source · pub struct LitFloat { /* private fields */ }
Expand description
A string of ascii digits followed by a .
, and then another string of
ascii digits.
Implementations§
source§impl LitFloat
impl LitFloat
sourcepub const fn value(&self) -> f64
pub const fn value(&self) -> f64
Returns the value of this literal.
Examples found in repository?
More examples
examples/calc.rs (line 84)
81 82 83 84 85 86 87 88 89 90 91 92 93
fn primary(input: ParseStream) -> Result<Expr> {
let lookahead = input.lookahead();
if lookahead.peek(token::LitFloat) {
Ok(Expr::Num(input.parse::<token::LitFloat>()?.value()))
} else if lookahead.peek(token::LitInt) {
Ok(Expr::Num(input.parse::<token::LitInt>()?.value() as f64))
} else if lookahead.peek(token::LeftParen) {
let group: Group<Parentheses> = input.parse()?;
parse(group.into_token_stream())
} else {
Err(lookahead.error())
}
}
Trait Implementations§
source§impl PartialEq for LitFloat
impl PartialEq for LitFloat
source§impl PartialOrd for LitFloat
impl PartialOrd for LitFloat
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl ToTokens for LitFloat
impl ToTokens for LitFloat
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Append
self
to the given TokenStream
.source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert
self
directly into a TokenStream
.source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Convert
self
directly into a TokenStream
.source§impl ToTokens for LitFloat
Available on crate feature proc-macro2
only.
impl ToTokens for LitFloat
Available on crate feature
proc-macro2
only.source§fn to_tokens(&self, tokens: &mut TokenStream2)
fn to_tokens(&self, tokens: &mut TokenStream2)
source§fn to_token_stream(&self) -> TokenStream2
fn to_token_stream(&self) -> TokenStream2
source§fn into_token_stream(self) -> TokenStream2
fn into_token_stream(self) -> TokenStream2
Auto Trait Implementations§
impl RefUnwindSafe for LitFloat
impl Send for LitFloat
impl Sync for LitFloat
impl Unpin for LitFloat
impl UnwindSafe for LitFloat
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more