Closed Insomniak47 closed 5 years ago
Currently we can't use Expect or the other Maybe related extensions on a task without first awaiting that task. That isn't great.
ex:
var myThing = (await MyTaskReturningFunction()).Expect();
I think this reads better: ex:
var myThing = await MyTaskReturningFunction().Expect()
Again like #21 the cost is low for a relatively nice ergo enhancement.
Currently we can't use Expect or the other Maybe related extensions on a task without first awaiting that task. That isn't great.
ex:
I think this reads better: ex:
Again like #21 the cost is low for a relatively nice ergo enhancement.