List(0, 1).sortWith((x, y) => x < y).filter(_ => true)
After:
List(0, 1).filter(_ => true).sortWith((x, y) => x < y)