mirror of
https://github.com/neovim/neovim.git
synced 2025-11-12 05:18:52 +00:00
This commit replaces the usage of math.floor((lo + hi) / 2) with the faster and equivalent bit.rshift(lo + hi, 1) for calculating the midpoint in binary search.