Closed
Description
Lines 1565 to 1570 in 05630b0
Could be improved in the same way as rust has switched it's old hashmap to the state of the art hashbrown.
It seems that there is a new state of the art Binary search in town leading up to 25% performance improvement and binary search is a foundational task.
Therefore it would be promising to investigate whether Rust could have a faster binary search implementation, the candidate being
https://news.ycombinator.com/item?id=23893366
(but maybe there are other new state of the art)