Current implementation:
// all docs about `sort` is always followed by a comment
col("a").sort(true, false); // yeah but a bit no
col("a").sort(false, true); // no but also yeah
col("a").sort(true, true); // hell yeah
col("a").sort(false, false); // hell no
vs.
Suggested implementation:
// pick a better poison
col("a").sort(SortOpt::AscNullFirst); // can't believe
col("a").sort(SortOpt{ asc: true, null_first: false }); // you guessed it
col("a").sort().asc().null_first(); // without comments!