@@ -27,7 +27,7 @@ use core::fmt;
27
27
use core:: hash:: { Hasher , Hash } ;
28
28
use core:: iter:: FromIterator ;
29
29
use core:: mem;
30
- use core:: ptr;
30
+ use core:: ptr:: Shared ;
31
31
32
32
/// A doubly-linked list.
33
33
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -40,7 +40,7 @@ pub struct LinkedList<T> {
40
40
type Link < T > = Option < Box < Node < T > > > ;
41
41
42
42
struct Rawlink < T > {
43
- p : * mut T ,
43
+ p : Option < Shared < T > > ,
44
44
}
45
45
46
46
impl < T > Copy for Rawlink < T > { }
@@ -93,12 +93,12 @@ pub struct IntoIter<T> {
93
93
impl < T > Rawlink < T > {
94
94
/// Like Option::None for Rawlink
95
95
fn none ( ) -> Rawlink < T > {
96
- Rawlink { p : ptr :: null_mut ( ) }
96
+ Rawlink { p : None }
97
97
}
98
98
99
99
/// Like Option::Some for Rawlink
100
100
fn some ( n : & mut T ) -> Rawlink < T > {
101
- Rawlink { p : n }
101
+ unsafe { Rawlink { p : Some ( Shared :: new ( n ) ) } }
102
102
}
103
103
104
104
/// Convert the `Rawlink` into an Option value
@@ -108,7 +108,7 @@ impl<T> Rawlink<T> {
108
108
/// - Dereference of raw pointer.
109
109
/// - Returns reference of arbitrary lifetime.
110
110
unsafe fn resolve < ' a > ( & self ) -> Option < & ' a T > {
111
- self . p . as_ref ( )
111
+ self . p . map ( |p| & * * p )
112
112
}
113
113
114
114
/// Convert the `Rawlink` into an Option value
@@ -118,7 +118,7 @@ impl<T> Rawlink<T> {
118
118
/// - Dereference of raw pointer.
119
119
/// - Returns reference of arbitrary lifetime.
120
120
unsafe fn resolve_mut < ' a > ( & mut self ) -> Option < & ' a mut T > {
121
- self . p . as_mut ( )
121
+ self . p . map ( |p| & mut * * p )
122
122
}
123
123
124
124
/// Return the `Rawlink` and replace with `Rawlink::none()`
@@ -984,6 +984,14 @@ impl<A: Hash> Hash for LinkedList<A> {
984
984
}
985
985
}
986
986
987
+ // Ensure that `LinkedList` and its read-only iterators are covariant in their type parameters.
988
+ #[ allow( dead_code) ]
989
+ fn assert_covariance ( ) {
990
+ fn a < ' a > ( x : LinkedList < & ' static str > ) -> LinkedList < & ' a str > { x }
991
+ fn b < ' i , ' a > ( x : Iter < ' i , & ' static str > ) -> Iter < ' i , & ' a str > { x }
992
+ fn c < ' a > ( x : IntoIter < & ' static str > ) -> IntoIter < & ' a str > { x }
993
+ }
994
+
987
995
#[ cfg( test) ]
988
996
mod tests {
989
997
use std:: clone:: Clone ;
0 commit comments