consistent naming for entityIterator among view implementations

This commit is contained in:
menduz 2023-07-23 17:12:53 -03:00
parent 945dd3ec65
commit 55f7813640

View File

@ -142,7 +142,7 @@ pub fn MultiView(comptime n_includes: usize, comptime n_excludes: usize) type {
utils.sortSub(usize, u32, sub_items[0..], self.type_ids[0..], asc_usize.sort);
}
pub fn iterator(self: *Self) Iterator {
pub fn entityIterator(self: *Self) Iterator {
self.sort();
return Iterator.init(self);
}