Przeglądaj źródła

table: ::size function

Michele Caini 1 rok temu
rodzic
commit
32bd18bf08
1 zmienionych plików z 8 dodań i 0 usunięć
  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;
 };
 };