pub type List<T> = VecDeque<Box<T>>;
Expand description
The Python list type. Generally, it’s used with a dyn Object
trait object to allow
for arbitrary contents. Since Rust doesn’t have a native type that supports mixed type
lists, we need to invent something.
Aliased Type§
struct List<T> { /* private fields */ }