Closed
Description
What problem does this solve or what need does it fill?
Current Entity comparison relies on rust's #derive(Eq, ...)
It now actually makes two comparisons (see asm code)
What solution would you like?
If treat whole Entity struct as u64 (through pointer cast on comparison, or even by store generation+id as u64) this could become one bitwise comparison.