1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
use core::{hint, slice};
use alloc::{
    vec::Vec,
    collections::vec_deque::{self, VecDeque},
};
use crate::{IntoMutIterator, IntoRefIterator, ListStorage};

unsafe impl<T> ListStorage for Vec<T> {
    type Element = T;

    fn with_capacity(capacity: usize) -> Self {
        Self::with_capacity(capacity)
    }
    fn insert(&mut self, index: usize, element: Self::Element) {
        self.insert(index, element)
    }
    fn remove(&mut self, index: usize) -> Self::Element {
        self.remove(index)
    }
    fn len(&self) -> usize {
        self.len()
    }
    unsafe fn get_unchecked(&self, index: usize) -> &Self::Element {
        (**self).get_unchecked(index)
    }
    unsafe fn get_unchecked_mut(&mut self, index: usize) -> &mut Self::Element {
        (**self).get_unchecked_mut(index)
    }

    fn get(&self, index: usize) -> Option<&Self::Element> {
        (**self).get(index)
    }
    fn get_mut(&mut self, index: usize) -> Option<&mut Self::Element> {
        (**self).get_mut(index)
    }
    fn new() -> Self {
        Self::new()
    }
    fn push(&mut self, element: Self::Element) {
        self.push(element)
    }
    fn pop(&mut self) -> Option<Self::Element> {
        self.pop()
    }
    fn capacity(&self) -> usize {
        self.capacity()
    }
    fn reserve(&mut self, additional: usize) {
        self.reserve(additional)
    }
    fn shrink_to_fit(&mut self) {
        self.shrink_to_fit()
    }
    fn truncate(&mut self, len: usize) {
        self.truncate(len)
    }
}
impl<'a, T: 'a> IntoRefIterator<'a> for Vec<T> {
    type Item = T;
    type Iter = slice::Iter<'a, T>;
    fn iter(&'a self) -> Self::Iter {
        (&self[..]).iter()
    }
}
impl<'a, T: 'a> IntoMutIterator<'a> for Vec<T> {
    type Item = T;
    type IterMut = slice::IterMut<'a, T>;
    fn iter_mut(&'a mut self) -> Self::IterMut {
        (&mut self[..]).iter_mut()
    }
}

unsafe impl<T> ListStorage for VecDeque<T> {
    type Element = T;

    fn with_capacity(capacity: usize) -> Self {
        Self::with_capacity(capacity)
    }
    fn insert(&mut self, index: usize, element: Self::Element) {
        self.insert(index, element)
    }
    fn remove(&mut self, index: usize) -> Self::Element {
        self.remove(index).expect("index out of bounds")
    }
    fn len(&self) -> usize {
        self.len()
    }
    unsafe fn get_unchecked(&self, index: usize) -> &Self::Element {
        // FIXME this relies on LLVM being smart enough to optimize out the bounds check
        self.get(index)
            .unwrap_or_else(|| hint::unreachable_unchecked())
    }
    unsafe fn get_unchecked_mut(&mut self, index: usize) -> &mut Self::Element {
        // FIXME see above
        self.get_mut(index)
            .unwrap_or_else(|| hint::unreachable_unchecked())
    }

    fn get(&self, index: usize) -> Option<&Self::Element> {
        self.get(index)
    }
    fn get_mut(&mut self, index: usize) -> Option<&mut Self::Element> {
        self.get_mut(index)
    }
    fn push(&mut self, element: Self::Element) {
        self.push_back(element)
    }
    fn pop(&mut self) -> Option<Self::Element> {
        self.pop_back()
    }
    fn capacity(&self) -> usize {
        self.capacity()
    }
    fn reserve(&mut self, additional: usize) {
        self.reserve(additional)
    }
    fn shrink_to_fit(&mut self) {
        self.shrink_to_fit()
    }
    fn truncate(&mut self, len: usize) {
        self.truncate(len)
    }
}
impl<'a, T: 'a> IntoRefIterator<'a> for VecDeque<T> {
    type Item = T;
    type Iter = vec_deque::Iter<'a, T>;
    fn iter(&'a self) -> Self::Iter {
        self.iter()
    }
}
impl<'a, T: 'a> IntoMutIterator<'a> for VecDeque<T> {
    type Item = T;
    type IterMut = vec_deque::IterMut<'a, T>;
    fn iter_mut(&'a mut self) -> Self::IterMut {
        self.iter_mut()
    }
}

/*
// TODO reimplement LinkedList with a custom SmartLinkedList
#[cfg(feature = "linked_list_storage")]
use alloc::collections::LinkedList;

#[cfg(feature = "linked_list_storage")]
unsafe impl<T> ListStorage for LinkedList<T> {
    type Element = T;

        fn with_capacity(capacity: usize) -> Self {
        assert_eq!(capacity, 0, "cannot create a linked list with nonzero preallocated capacity");
        Self::new()
    }
        fn insert(&mut self, index: usize, element: Self::Element) {
        assert!(index <= self.len(), "incorrect index");
        let mut cursor = {
            let mut cursor = self.cursor_front_mut();
            for _ in 0..index {
                cursor.move_next();
            }
            cursor
        };
        cursor.insert_after(element)
    }
        fn remove(&mut self, index: usize) -> Self::Element {
        let mut cursor = {
            let mut cursor = self.cursor_front_mut();
            for _ in 0..index {
                cursor.move_next();
            }
            cursor
        };
        cursor.remove_current().expect("index out of bounds")
    }
        fn len(&self) -> usize {
        self.len()
    }
        unsafe fn get_unchecked(&self, index: usize) -> &Self::Element {
        self.get(index).unwrap_or_else(|| unreachable_unchecked())
    }
        unsafe fn get_unchecked_mut(&mut self, index: usize) -> &mut Self::Element {
        self.get_mut(index).unwrap_or_else(|| unreachable_unchecked())
    }
        fn get(&self, index: usize) -> Option<&Self::Element> {
        self.iter().nth(index)
    }
        fn get_mut(&mut self, index: usize) -> Option<&mut Self::Element> {
        self.iter_mut().nth(index)
    }

        fn new() -> Self {
        Self::new()
    }
        fn push(&mut self, element: Self::Element) {
        self.push_back(element)
    }
        fn pop(&mut self) -> Option<Self::Element> {
        self.pop_back()
    }
        fn reserve(&mut self, additional: usize) {
        if self.len() + additional > self.capacity() {
            unimplemented!("linked lists are always at max capacity")
        }
    }
}
*/