xref: /aosp_15_r20/external/rust/android-crates-io/crates/serde_json/tests/lexical.rs
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![allow(
2     clippy::cast_lossless,
3     clippy::cast_possible_truncation,
4     clippy::cast_possible_wrap,
5     clippy::cast_precision_loss,
6     clippy::cast_sign_loss,
7     clippy::comparison_chain,
8     clippy::doc_markdown,
9     clippy::excessive_precision,
10     clippy::float_cmp,
11     clippy::if_not_else,
12     clippy::let_underscore_untyped,
13     clippy::module_name_repetitions,
14     clippy::needless_late_init,
15     clippy::shadow_unrelated,
16     clippy::similar_names,
17     clippy::single_match_else,
18     clippy::too_many_lines,
19     clippy::unreadable_literal,
20     clippy::unseparated_literal_suffix,
21     clippy::wildcard_imports
22 )]
23 
24 extern crate alloc;
25 
26 #[path = "../src/lexical/mod.rs"]
27 mod lexical;
28 
29 mod lib {
30     pub use std::vec::Vec;
31     pub use std::{cmp, iter, mem, ops};
32 }
33 
34 #[path = "lexical/algorithm.rs"]
35 mod algorithm;
36 
37 #[path = "lexical/exponent.rs"]
38 mod exponent;
39 
40 #[path = "lexical/float.rs"]
41 mod float;
42 
43 #[path = "lexical/math.rs"]
44 mod math;
45 
46 #[path = "lexical/num.rs"]
47 mod num;
48 
49 #[path = "lexical/parse.rs"]
50 mod parse;
51 
52 #[path = "lexical/rounding.rs"]
53 mod rounding;
54 

served by {OpenGrok

Last Index Update: Mon Apr 28 06:57:04 CEST 2025