https://github.com/skyfloogle
// 2 branches
slow = pos >= start && pos < end;
// 1 branch
fast = unsigned(pos - start) < size;
// 2 branches
slow = pos >= start && pos < end;
// 1 branch
fast = unsigned(pos - start) < size;
The video below demonstrates the difference in Golf's level select.
The video below demonstrates the difference in Golf's level select.