get method
Implementation
A? get(Entity entity) {
if (!_world.isAlive(entity)) return null;
final entityIndex = entity.index;
final aDense = _a.denseIndexOf(entityIndex);
if (aDense < 0) return null;
if (!Query.passesFilters(entityIndex, _withStores, _withoutStores)) {
return null;
}
return _a.valueAt(aDense);
}