Closed mrcjkb closed 3 years ago
This PR improves the sorting performance a bit. By using or statements rather than and, the nil checks can be skipped for many items (if the priorities or scores are equal). Equal priorities are not an uncommon occurrence.
or
and
nil
This PR improves the sorting performance a bit. By using
or
statements rather thanand
, thenil
checks can be skipped for many items (if the priorities or scores are equal). Equal priorities are not an uncommon occurrence.