This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace YourNamespaceHere | |
open System | |
open System.Diagnostics | |
open System.Threading | |
open System.Threading.Tasks | |
/// The 'Sync' builder for evaluating expressions in a synchronous style to aid debugging. | |
type [<Sealed>] Sync () = | |
member inline this.Bind (x, f) = f x | |
member inline this.Return x = x |