mirror of
https://github.com/neovim/neovim.git
synced 2026-03-07 08:41:49 +10: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.