12namespace nc::ecs::detail
20 auto operator==(
const Entity& other)
const noexcept
22 return entity == other;
26template<
class T,
class... Args>
27auto Construct(Entity entity, Args&&... args)
29 if constexpr (std::constructible_from<T, Entity, Args...>)
30 return T{entity, std::forward<Args>(args)...};
32 return T{std::forward<Args>(args)...};
35template<
class T,
class U>
36auto EraseUnstable(std::vector<T>& container,
const U& value) ->
bool
38 auto pos = std::find(container.begin(), container.end(), value);
39 if (pos != container.end())
41 *pos = std::move(container.back());