Suggestion to Rename `Order.combineAll` for Clarity

Thoughts on renaming (or adding an alias) for Order.combineAll? I've been introducing folks at my company to Effect, and this one small thing has mildly confused everyone.

I wrote it out like this in a slide deck. Everyone understands the concept, but trips up on the combineAll name
const ItemOrder = Order.combineAll([
    // first order by name A->Z
    orderByProp("name", Order.string),
    // break ties, sorting by cost high->low
    orderByProp("cost", Order.reverse(Order.number)),
    // ..etc
]);


Sure, it's "combining" multiple orders into a single order, but maybe something like Order.lexical() or lexically() or Order.oneByOne or something would make it more intuitive
Was this page helpful?