Skip to content

Commit 30fd30a

Browse files
committed
---
yaml --- r: 14232 b: refs/heads/try c: 87d17be h: refs/heads/master v: v3
1 parent 78b3789 commit 30fd30a

File tree

15 files changed

+30
-6
lines changed

15 files changed

+30
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 0dacefb4289f02b473f54b104dd120d166774f1b
5+
refs/heads/try: 87d17be8462725c61e0104bc1fe6b5607e642065
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/libcore/core.rc

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@ This behavior can be disabled with the `no_core` crate attribute."
2828

2929
)];
3030

31-
export box, char, float, bessel, f32, f64, int, str, ptr;
32-
export uint, u8, u32, u64, vec, bool;
31+
export int, i8, i16, i32, i64;
32+
export uint, u8, u16, u32, u64;
33+
export float, f32, f64;
34+
export box, char, str, ptr, vec, bool;
3335
export either, option, result, iter;
3436
export ctypes, sys, unsafe, comm, task, logging;
3537
export extfmt;
36-
export math;
38+
export math, bessel;
3739
export tuple;
3840

3941
// Built-in-type support modules
@@ -45,10 +47,15 @@ mod bessel;
4547
mod f32;
4648
mod f64;
4749
mod int;
50+
mod i8;
51+
mod i16;
52+
mod i32;
53+
mod i64;
4854
mod str;
4955
mod ptr;
5056
mod uint;
5157
mod u8;
58+
mod u16;
5259
mod u32;
5360
mod u64;
5461
mod vec;

branches/try/src/libcore/f32.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[doc = "Floating point operations and constants for `f32`"];
1+
#[doc = "Operations and constants constants for `f32`"];
22

33
// PORT
44

branches/try/src/libcore/f64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[doc = "Floating point operations and constants for `f64`"];
1+
#[doc = "Operations and constants constants for `f64`"];
22

33
// PORT
44

branches/try/src/libcore/float.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#[doc = "Operations and constants constants for `float`"];
2+
13
/*
24
Module: float
35
*/

branches/try/src/libcore/i16.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#[doc = "Operations and constants constants for `i16`"];

branches/try/src/libcore/i32.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#[doc = "Operations and constants constants for `i32`"];

branches/try/src/libcore/i64.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#[doc = "Operations and constants constants for `i64`"];

branches/try/src/libcore/i8.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#[doc = "Operations and constants constants for `i8`"];

branches/try/src/libcore/int.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#[doc = "Operations and constants constants for `int`"];
2+
13
/*
24
Module: int
35
*/

branches/try/src/libcore/u16.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#[doc = "Operations and constants constants for `u16`"];

branches/try/src/libcore/u32.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#[doc = "Operations and constants constants for `u32`"];
2+
13
/*
24
Module: u32
35
*/

branches/try/src/libcore/u64.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#[doc = "Operations and constants constants for `u64`"];
2+
13
/*
24
Module: u64
35
*/

branches/try/src/libcore/u8.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#[doc = "Operations and constants constants for `u8`"];
2+
13
/*
24
Module: u8
35
*/

branches/try/src/libcore/uint.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#[doc = "Operations and constants constants for `uint`"];
2+
13
/*
24
Module: uint
35
*/

0 commit comments

Comments
 (0)