John Wostenberg
John Wostenberg
Would someone mind drafting up an RFC? I could certainly try but I don't think I have enough knowledge about Span
@TIHan great, I will be more than happy to do this once I'm on Christmas break from classes... Can't wait to work on stuff other than school!
PR submitted with a basic, incomplete RFC drafted. Help is now greatly appreciated
@voronoipotato By "run" do you mean compile and run?
Can we get some example scripts for the proposed solution, instead of talking hypotheticals, and see whether or not the language suggestion is moot? (I personally am not able to...
I am not a huge fan of globally opening namespaces. I think it was a bad choice even in C#. Sometimes it can already be confusing enough to figure out...
There *is* a con: it encourages using a construct which may kill performance, as switching between async and task is not free. That's not to say that this isn't worth...
> One personal hurdle I've had with this easy bridging mechanism is that it makes it very easy to lose the CancellationToken for the async in the translation Yeah, it...
> > The explicit call serves as a reminder to me to check if my Task-generating function accepts a CancellationToken, and if so extract it from the `async` context before...
Will invokables be assignable as lambdas? ```fsharp let f (g: string -> unit) = g "foo" type ConsolePrinter() = member _.Invoke s = System.Console.WriteLine s let cons = ConsolePrinter() f...