1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 08:58:00 +02:00

Collapsible regions (aka outlining aka code folding)

This commit is contained in:
Brian Fiete 2022-02-28 11:27:12 -08:00
parent 3dd4212ccd
commit 90735e3bf8
21 changed files with 2518 additions and 277 deletions

View file

@ -55,7 +55,7 @@ namespace System
int c = midVal <=> value;
if (c == 0) return i;
if (c < 0)
lo = i + 1;
lo = i + 1;
else
hi = i - 1;
}