Skip to content

Commit

Permalink
add trailing newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
sviataslau.hankovich committed Oct 31, 2022
1 parent 37eb26d commit 18b267e
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ protected static Result<T, E> GetExpectedValueErrorResult(bool isSuccess, bool c
return Result.SuccessIf(isSuccess, T.Value2, E.Value2);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ public async Task MapIf_Task_Left_computes_predicate_T_E_executes_func_condition
returned.Should().Be(GetExpectedValueErrorResult(isSuccess, condition));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ public async Task MapIf_Task_Right_computes_predicate_T_E_executes_func_conditio
returned.Should().Be(GetExpectedValueErrorResult(isSuccess, condition));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ public async Task MapIf_Task_computes_predicate_T_E_executes_func_conditionally_
returned.Should().Be(GetExpectedValueErrorResult(isSuccess, condition));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ public async Task MapIf_ValueTask_Left_computes_predicate_T_E_executes_func_cond
returned.Should().Be(GetExpectedValueErrorResult(isSuccess, condition));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ public async Task MapIf_ValueTask_Right_computes_predicate_T_E_executes_func_con
returned.Should().Be(GetExpectedValueErrorResult(isSuccess, condition));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ public async Task MapIf_ValueTask_computes_predicate_T_E_executes_func_condition
returned.Should().Be(GetExpectedValueErrorResult(isSuccess, condition));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ public void MapIf_computes_predicate_T_E_executes_func_conditionally_and_returns
returned.Should().Be(GetExpectedValueErrorResult(isSuccess, condition));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public static async Task<Result<T, E>> MapIf<T, E>(this Task<Result<T, E>> resul
return result.MapIf(predicate, func);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ public static Task<Result<T, E>> MapIf<T, E>(this Result<T, E> result, Func<T, b
return result.Map(func);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public static async Task<Result<T, E>> MapIf<T, E>(this Task<Result<T, E>> resul
return await result.MapIf(predicate, func).DefaultAwait();
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ public static async ValueTask<Result<T, E>> MapIf<T, E>(this ValueTask<Result<T,
}
}
}
#endif
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ public static ValueTask<Result<T, E>> MapIf<T, E>(this Result<T, E> result, Func
}
}
}
#endif
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ public static async ValueTask<Result<T, E>> MapIf<T, E>(this ValueTask<Result<T,
}
}
}
#endif
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ public static Result<T, E> MapIf<T, E>(this Result<T, E> result, Func<T, bool> p
return result.Map(func);
}
}
}
}

0 comments on commit 18b267e

Please sign in to comment.