Michele Caini 2 лет назад
Родитель
Сommit
32bd18bf08
1 измененных файлов с 8 добавлено и 0 удалено
  1. 8 0
      src/entt/entity/table.hpp

+ 8 - 0
src/entt/entity/table.hpp

@@ -137,6 +137,14 @@ public:
         (std::get<container_for<Row>>(payload).shrink_to_fit(), ...);
         (std::get<container_for<Row>>(payload).shrink_to_fit(), ...);
     }
     }
 
 
+    /**
+     * @brief Returns the number of rows in a table.
+     * @return Number of rows.
+     */
+    [[nodiscard]] size_type size() const noexcept {
+        return std::get<0>(payload).size();
+    }
+
 private:
 private:
     container_type payload;
     container_type payload;
 };
 };