Add rust::Vec<T>::empty
diff --git a/include/cxx.h b/include/cxx.h
index a96e6fa..250eba2 100644
--- a/include/cxx.h
+++ b/include/cxx.h
@@ -206,6 +206,7 @@
 class Vec final {
 public:
   size_t size() const noexcept;
+  bool empty() const noexcept { return size() == 0; }
 
 private:
   Vec() noexcept;