You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* * Added an Async.Sleep overload that takes a TimeSpan instead of an int.
* Simply calls the previous Sleep(int) method after converting TimeSpan.TotalMilliseconds to Int32 (with overflow checks).
* * Both Async.Sleep(int32) and Async.Sleep(TimeSpan) call Async.Sleep(int64), thus preventing OverflowExceptions with very long delays.
* Async.Sleep(TimeSpan) limits negative delays to zero.
* * Negative delays cause an ArgumentOutOfRangeException to match the behavior of the Async.Sleep(int) method.
* * Added tests for Async.Sleep
* * Added Async.Sleep(TimeSpan) to surface area tests
* * Fix for missing type annotation in SignatureWithOptionalArgs01.fs
* * Fix for missing type annotation in SignatureWithOptionalArgs01.fs
* fixed code style
Co-authored-by: Phillip Carter <pcarter@fastmail.com>
* fixed code style
Co-authored-by: Phillip Carter <pcarter@fastmail.com>
* Fixed code styles
Added Experimental attributes
* Added ExperimentalAttributeMessages to the prim-types.fsi signature file, otherwise messages cannot be accessed elsewhere.
Note that this currently requires begin/end syntax due to some weird bug with literals in signature files.
* Fixed code style
Co-authored-by: Phillip Carter <pcarter@fastmail.com>
0 commit comments