ruud
Results
2
comments of
ruud
Our use case is that we start with a `UnitResult` and need to Check a `Result`, but we do not want to bind to this `Result`
Maybe the overload should be changed to make this more explicit: ``` public static UnitResult Check(this UnitResult result, Func func) { var check = result.Bind(func); if (check.IsFailure) return check.Error; return...