Don Syme
Don Syme
> Most natural option seems to be to support use! as a desugaring of TryFinally and Bind. This would only require us to extend TryFinally somewhat to support a finallyBody...
I think we should do this. Async should respect IAsyncDisposable. Marking as approved-in-principle.
More information about the proposed functions is needed
Closing as no new information has been provided
@gmpl If you would like to spec out a set of additions as a reply here, I can re-open
@gusty OK, thanks! That's very helpful If you have 10 minutes please jot down the full signature of the set of things you think might reasonably be added to FSharp.Core,...
Reopening as information has been provided
Re names - For these I would expect more explicit names like ``` Array.splitAtAny : seq seq -> 'T [] -> seq seq 'T [] Array.replaceAtIndex : int -> 'T...
Perhaps this: ```fsharp Array.splitAt : int -> 'T[] -> 'T[] * 'T[] Array.splitOn : 'T -> 'T [] -> 'T [] [] Array.splitOnAny : seq 'T [] [] Array.splitOnAnySegment :...
Some of this was done in F# 6, these remain: ``` Array.splitOn : 'T -> 'T [] -> 'T [] [] Array.splitOnAny : seq 'T [] [] Array.splitOnAnyChunk : seq...