Skip to content

1.0.16

Compare
Choose a tag to compare
@dtolnay dtolnay released this 11 Dec 22:16
· 1858 commits to master since this release
1.0.16
38f6fe2
  • Add Vec capacity accessor (#565) and copy constructor and copy assignment operator (#566)
  template <typename T>
  class Vec final {
    ...
+   Vec(const Vec &);

+   Vec &operator=(const Vec &);

+   size_t capacity() const noexcept;
  };