group: just use meaningful names :)

This commit is contained in:
Michele Caini
2023-02-27 16:21:04 +01:00
parent e4957badb7
commit 74691dc1d9

View File

@@ -561,15 +561,15 @@ public:
/**
* @brief Constructs a group from a set of storage classes.
* @param extent The actual number of entities to iterate.
* @param len The actual number of entities to iterate.
* @param opool The storage for the _owned_ types to iterate.
* @param gpool The storage for the _observed_ types to iterate.
* @param epool The storage for the types used to filter the group.
*/
basic_group(const std::size_t &extent, Owned &...opool, Get &...gpool, Exclude &...epool) noexcept
basic_group(const std::size_t &len, Owned &...opool, Get &...gpool, Exclude &...epool) noexcept
: pools{&opool..., &gpool...},
filter{&epool...},
length{&extent} {}
length{&len} {}
/**
* @brief Returns the storage for a given component type.