up vote 4 down vote favorite
share [g+] share [fb]

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

link|improve this question

77% accept rate
feedback

2 Answers

up vote 12 down vote accepted

Use a tuple as your sort key:

myList |> Seq.sort_by (fun x -> x.Something, x.SomethingElse)
link|improve this answer
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 '09 at 23:29
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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