(toks: &[Tok<'_>], keyword: &str)
| 58 | } |
| 59 | |
| 60 | pub(super) fn float_after(toks: &[Tok<'_>], keyword: &str) -> Option<f64> { |
| 61 | word_after(toks, keyword)?.parse().ok() |
| 62 | } |
| 63 | |
| 64 | /// Extract the two consecutive float tokens that follow `keyword`. |
| 65 | /// |
no test coverage detected