Lodash.sortBy

Creates an array of elements, sorted in ascending order by the results of running each element in a collection thru each iteratee. This method performs a stable sort, that is, it preserves the original sort order of equal elements. The iteratees are invoked with one argument: (value).

struct Lodash
nothrow @trusted @safe ref
sortBy
(
ARGS...
)
(
auto ref ARGS iteratees
)

Return Value

Type: auto ref

- Lodash chained on (Array): the new sorted array.

Meta