vote up 3 vote down star

Hello,

Is there any function in F# similar to LINQ fluent syntax for sorting by multiple expressions:

myList.OrderBy(fun x->x.Something).ThenBy(fun x->x.SomethingElse)

I'd love something like:

myList 
|> Seq.sort_by(fun x->x.Something) 
|> Seq.then_by(fun x->x.SomethingElse)

Thx

flag

2 Answers

vote up 11 vote down check

Use a tuple as your sort key:

myList |> Seq.sort_by (fun x -> x.Something, x.SomethingElse)
link|flag
Right, tuples sort in lexicographical order, so putting multiple keys in order left-to-right in a tuple does just what is desired. – Brian May 5 at 23:29
vote up 1 vote down

You may find some of the sort algorithms here helpful, as I don't know of a wait in F# to do sorting, besides using the .NET functionality.

http://cs.hubfs.net/forums/thread/3876.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.