Is there a shorter notation for identity function (fun x -> x) in F#?

f#, syntax

Solution

There is a short version `id` which is equal to `fun x -> x`

Also, for your case you can just do `Seq.sort`

Problem

Is there a shorter notation for identity function (fun x -> x), other then defining your own? Writing ``` Seq.countBy (fun x -> x) ``` looks so wordy.

Original source