mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 03:33:59 +00:00
core: Add modules for remaining scalar types
This commit is contained in:
parent
0dacefb428
commit
87d17be846
@ -28,12 +28,14 @@ This behavior can be disabled with the `no_core` crate attribute."
|
||||
|
||||
)];
|
||||
|
||||
export box, char, float, bessel, f32, f64, int, str, ptr;
|
||||
export uint, u8, u32, u64, vec, bool;
|
||||
export int, i8, i16, i32, i64;
|
||||
export uint, u8, u16, u32, u64;
|
||||
export float, f32, f64;
|
||||
export box, char, str, ptr, vec, bool;
|
||||
export either, option, result, iter;
|
||||
export ctypes, sys, unsafe, comm, task, logging;
|
||||
export extfmt;
|
||||
export math;
|
||||
export math, bessel;
|
||||
export tuple;
|
||||
|
||||
// Built-in-type support modules
|
||||
@ -45,10 +47,15 @@ mod bessel;
|
||||
mod f32;
|
||||
mod f64;
|
||||
mod int;
|
||||
mod i8;
|
||||
mod i16;
|
||||
mod i32;
|
||||
mod i64;
|
||||
mod str;
|
||||
mod ptr;
|
||||
mod uint;
|
||||
mod u8;
|
||||
mod u16;
|
||||
mod u32;
|
||||
mod u64;
|
||||
mod vec;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#[doc = "Floating point operations and constants for `f32`"];
|
||||
#[doc = "Operations and constants constants for `f32`"];
|
||||
|
||||
// PORT
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#[doc = "Floating point operations and constants for `f64`"];
|
||||
#[doc = "Operations and constants constants for `f64`"];
|
||||
|
||||
// PORT
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
#[doc = "Operations and constants constants for `float`"];
|
||||
|
||||
/*
|
||||
Module: float
|
||||
*/
|
||||
|
1
src/libcore/i16.rs
Normal file
1
src/libcore/i16.rs
Normal file
@ -0,0 +1 @@
|
||||
#[doc = "Operations and constants constants for `i16`"];
|
1
src/libcore/i32.rs
Normal file
1
src/libcore/i32.rs
Normal file
@ -0,0 +1 @@
|
||||
#[doc = "Operations and constants constants for `i32`"];
|
1
src/libcore/i64.rs
Normal file
1
src/libcore/i64.rs
Normal file
@ -0,0 +1 @@
|
||||
#[doc = "Operations and constants constants for `i64`"];
|
1
src/libcore/i8.rs
Normal file
1
src/libcore/i8.rs
Normal file
@ -0,0 +1 @@
|
||||
#[doc = "Operations and constants constants for `i8`"];
|
@ -1,3 +1,5 @@
|
||||
#[doc = "Operations and constants constants for `int`"];
|
||||
|
||||
/*
|
||||
Module: int
|
||||
*/
|
||||
|
1
src/libcore/u16.rs
Normal file
1
src/libcore/u16.rs
Normal file
@ -0,0 +1 @@
|
||||
#[doc = "Operations and constants constants for `u16`"];
|
@ -1,3 +1,5 @@
|
||||
#[doc = "Operations and constants constants for `u32`"];
|
||||
|
||||
/*
|
||||
Module: u32
|
||||
*/
|
||||
|
@ -1,3 +1,5 @@
|
||||
#[doc = "Operations and constants constants for `u64`"];
|
||||
|
||||
/*
|
||||
Module: u64
|
||||
*/
|
||||
|
@ -1,3 +1,5 @@
|
||||
#[doc = "Operations and constants constants for `u8`"];
|
||||
|
||||
/*
|
||||
Module: u8
|
||||
*/
|
||||
|
@ -1,3 +1,5 @@
|
||||
#[doc = "Operations and constants constants for `uint`"];
|
||||
|
||||
/*
|
||||
Module: uint
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user