I am porting over some old F# code from CTP 1.9.6.8
The code uses List.first:
List.first (fun x -> if x.Date = d then Some(x) else None)
List.first has been deprecated. What is the current method used to achieve the same functionality.
I have reviewed the release notes and could not find any specific reference to the change.
Any help would be greatly appreciated.
Try List.pick