
# Objective As discussed in #19285, some of our names conflict. `Entry` in bevy_ecs is one of those overly general names. ## Solution Rename this type (and the related types) to `ComponentEntry`. --------- Co-authored-by: urben1680 <55257931+urben1680@users.noreply.github.com>
9 lines
377 B
Markdown
9 lines
377 B
Markdown
---
|
|
title: `Entry` enum is now `ComponentEntry`
|
|
pull_requests: [TODO]
|
|
---
|
|
|
|
The `Entry` enum in `bevy::ecs::world` has been renamed to `ComponentEntry`, to avoid name clashes with `hash_map`, `hash_table` and `hash_set` `Entry` types.
|
|
|
|
Correspondingly, the nested `OccupiedEntry` and `VacantEntry` enums have been renamed to `OccupiedComponentEntry` and `VacantComponentEntry`.
|