Conversation
Notices
-
shp (shpuld@shitposter.club)'s status on Thursday, 15-Mar-2018 09:45:02 EDT shp so, revelation of today:
val1 < val2 ?
(val1 < x && x < val2) :
(val2 < x && x < val1);
is quite a bit faster than
(val1 < x && x < val2) ||
(val2 < x && x < val1);