Lines Matching refs:Vec
1 {{#title rust::Vec<T> — Rust ♡ C++}}
2 # rust::Vec\<T\>
16 class Vec final {
20 Vec() noexcept;
21 Vec(std::initializer_list<T>);
22 Vec(const Vec &);
23 Vec(Vec &&) noexcept;
24 ~Vec() noexcept;
26 Vec &operator=(Vec &&) noexcept;
27 Vec &operator=(const Vec &);
63 void swap(Vec &) noexcept;
67 # class Vec<T>::iterator final {
98 # class Vec<T>::const_iterator final {
133 Vec\<T\> does not support T being an opaque C++ type. You should use
151 fn f(elements: Vec<Shared>);
169 void f(rust::Vec<Shared> elements);
182 void f(rust::Vec<Shared> v) {