Skip to content

Commit 4c9c3d4

Browse files
committed
---
yaml --- r: 96993 b: refs/heads/dist-snap c: 07dc0f3 h: refs/heads/master i: 96991: 25e787b v: v3
1 parent 9cbb763 commit 4c9c3d4

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: d40974a5fe0b1d3899647be1876ee021b8364983
9+
refs/heads/dist-snap: 07dc0f3a74f3bba5620c91a12320e5bf2773f7b8
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libstd/cell.rs

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,33 @@ pub struct Cell<T> {
2121
priv value: T,
2222
}
2323

24+
#[cfg(stage0)]
25+
impl<T> Cell<T> {
26+
/// Creates a new `Cell` containing the given value.
27+
pub fn new(value: T) -> Cell<T> {
28+
Cell {
29+
value: value,
30+
}
31+
}
32+
33+
/// Returns a copy of the contained value.
34+
#[inline]
35+
pub fn get(&self) -> T {
36+
unsafe {
37+
::cast::transmute_copy(&self.value)
38+
}
39+
}
40+
41+
/// Sets the contained value.
42+
#[inline]
43+
pub fn set(&self, value: T) {
44+
unsafe {
45+
*cast::transmute_mut(&self.value) = value
46+
}
47+
}
48+
}
49+
50+
#[cfg(not(stage0))]
2451
impl<T: ::kinds::Pod> Cell<T> {
2552
/// Creates a new `Cell` containing the given value.
2653
pub fn new(value: T) -> Cell<T> {

0 commit comments

Comments
 (0)