mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-10 20:28:44 +00:00
22 lines
484 B
Rust
22 lines
484 B
Rust
|
//! This module contains some useful constants.
|
||
|
|
||
|
#![deny(missing_docs_in_private_items)]
|
||
|
|
||
|
/// List of the built-in types names.
|
||
|
///
|
||
|
/// See also [the reference][reference-types] for a list of such types.
|
||
|
///
|
||
|
/// [reference-types]: https://doc.rust-lang.org/reference.html#types
|
||
|
pub const BUILTIN_TYPES: &'static [&'static str] = &[
|
||
|
"i8", "u8",
|
||
|
"i16", "u16",
|
||
|
"i32", "u32",
|
||
|
"i64", "u64",
|
||
|
"isize", "usize",
|
||
|
"f32",
|
||
|
"f64",
|
||
|
"bool",
|
||
|
"str",
|
||
|
"char",
|
||
|
];
|