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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#![allow(
dead_code,
unused_imports,
unused_variables,
unused_macros,
unused_assignments,
unused_mut,
non_snake_case,
unused_must_use,
)]
use std::collections::VecDeque;
use std::fmt;
use std::error;
use std::ops::Deref;
use std::str::FromStr;
use crate::_Object;
use crate::Object;
use crate::Int;
use crate::Float;
use crate::_String;
use crate::Char;
use crate::Bool;
use super::Append;
pub struct List {
pub _list: VecDeque<Object>,
}
impl List {
pub fn new() -> List {
List {
_list: VecDeque::new(),
}
}
}
impl _Object for List {
fn __len__(&self) -> usize {
self._list.len()
}
fn __repr__(&self) -> String {
String::from("unimplemented")
}
fn __str__(&self) -> String {
String::from("unimplemented")
}
}
impl fmt::Display for List {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if self._list.len() == 0 {
write!(f, "[]");
return Ok(())
}
let zero = self._list.get(0).unwrap();
match zero {
Object::String(obj) => write!(f, "[{}", obj.__repr__()),
Object::Char(obj) => write!(f, "[{}", obj.__repr__()),
_ => write!(f, "[{}", zero),
};
for _object in self._list.iter().skip(1) {
match _object {
Object::String(obj) => write!(f, ", {}", obj.__repr__()),
Object::Char(obj) => write!(f, ", {}", obj.__repr__()),
_ => write!(f, ", {}", _object),
};
}
write!(f, "]")
}
}
impl Deref for List {
type Target = VecDeque<Object>;
fn deref(&self) -> &Self::Target {
&self._list
}
}
impl From<&str> for List {
fn from(_static_string: &str) -> List {
List {
_list:
_static_string.chars()
.map(|c| Object::Char(Char::new(c)))
.collect()
}
}
}
impl From<&String> for List {
fn from(_string: &String) -> List {
List {
_list:
_string.chars()
.map(|c| Object::Char(Char::new(c)))
.collect()
}
}
}
impl From<String> for List {
fn from(_string: String) -> List {
List {
_list:
_string.chars()
.map(|c| Object::Char(Char::new(c)))
.collect()
}
}
}
impl From<i32> for List {
#[doc = include_str!("../../docs/python_list/showcase.md")]
fn from(_integer: i32) -> List {
let mut vector_deque = VecDeque::new();
vector_deque.push_back(Object::Int(Int::new(_integer)));
List {
_list: vector_deque,
}
}
}
impl From<&List> for List {
fn from(_list: &List) -> List {
let mut temp_list: VecDeque<Object> = VecDeque::new();
for _object in &_list._list {
}
List {
_list: temp_list,
}
}
}
impl FromStr for List {
type Err = Box<dyn error::Error>;
fn from_str(_static_str: &str) -> Result<Self, Self::Err> {
Ok(List::from(_static_str))
}
}
impl FromIterator<i32> for List {
fn from_iter<T: IntoIterator<Item = i32>>(
_integer_iterator: T
) -> Self {
let mut integer_list = List::new();
for integer in _integer_iterator {
integer_list.append_back(integer);
}
integer_list
}
}
impl FromIterator<String> for List {
fn from_iter<T: IntoIterator<Item = String>>(
_string_iterator: T
) -> Self {
let mut string_list = List::new();
for _string in _string_iterator {
string_list.append_back(_string);
}
string_list
}
}