You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Applies the provided selector action to the value of the current <see cref="Result"/> instance.
92
+
/// </summary>
93
+
/// <param name="selector">The action to apply to current <see cref="Result"/> instance.</param>
94
+
/// <returns>
95
+
/// Returns <see cref="Success"/> if the current <see cref="Result"/> is in a successful state, and the action invocation is also successful; otherwise; <see cref="Failure"/>.
96
+
/// </returns>
97
+
publicoverrideResultSelect(Actionselector)=>this;
98
+
90
99
/// <summary>
91
100
/// Applies the provided selector function to the value of the current <see cref="Result"/> instance.
92
101
/// </summary>
93
-
/// <param name="selector">The function to apply to the value of the current <see cref="Result"/> instance.</param>
102
+
/// <param name="selector">The function to apply to the current <see cref="Result"/> instance.</param>
94
103
/// <typeparam name="TResult">The underlying type of the result produced by the selector function.</typeparam>
95
104
/// <returns>
96
-
/// Returns a new <see cref="Result{TResult}"/> instance containing the result of the function if the current
97
-
/// <see cref="Result"/> instance is in a successful state; otherwise, returns the current failed <see cref="Result"/> instance.
105
+
/// Returns <see cref="Success{T}"/> if the current <see cref="Result"/> is in a successful state, and the action invocation is also successful; otherwise; <see cref="Failure{T}"/>.
/// Applies the provided selector function to the value of the current <see cref="Result"/> instance.
103
111
/// </summary>
104
-
/// <param name="selector">The function to apply to the value of the current <see cref="Result"/> instance.</param>
112
+
/// <param name="selector">The action to function to the current <see cref="Result"/> instance.</param>
113
+
/// <returns>
114
+
/// Returns <see cref="Success"/> if the current <see cref="Result"/> is in a successful state, and the action invocation is also successful; otherwise; <see cref="Failure"/>.
/// Applies the provided selector function to the value of the current <see cref="Result"/> instance.
120
+
/// </summary>
121
+
/// <param name="selector">The function to apply to the current <see cref="Result"/> instance.</param>
105
122
/// <typeparam name="TResult">The underlying type of the result produced by the selector function.</typeparam>
106
123
/// <returns>
107
-
/// Returns a new <see cref="Result{TResult}"/> instance containing the result of the function if the current
108
-
/// <see cref="Result"/> instance is in a successful state; otherwise, returns the current failed <see cref="Result"/> instance.
124
+
/// Returns <see cref="Success{T}"/> if the current <see cref="Result"/> is in a successful state, and the action invocation is also successful; otherwise; <see cref="Failure{T}"/>.
/// Applies the provided selector action to the value of the current <see cref="Result{T}"/> instance.
245
+
/// </summary>
246
+
/// <param name="selector">The action to apply to the value of the current <see cref="Result{T}"/> instance.</param>
247
+
/// <returns>
248
+
/// Returns <see cref="Success"/> if the current <see cref="Result{T}"/> is in a successful state, and the action invocation is also successful; otherwise; <see cref="Failure"/>.
/// Applies the provided selector function to the value of the current <see cref="Result{T}"/> instance.
229
254
/// </summary>
230
255
/// <param name="selector">The function to apply to the value of the current <see cref="Result{T}"/> instance.</param>
231
256
/// <typeparam name="TResult">The underlying type of the result produced by the selector function.</typeparam>
232
257
/// <returns>
233
-
/// Returns a new <see cref="Result{TResult}"/> instance containing the result of the function if the current
234
-
/// <see cref="Result{T}"/> instance is in a successful state; otherwise, returns the current failed <see cref="Result{T}"/> instance.
258
+
/// Returns <see cref="Success{T}"/> if the current <see cref="Result{T}"/> is in a successful state, and the action invocation is also successful; otherwise; <see cref="Failure{T}"/>.
/// Applies the provided selector function to the value of the current <see cref="Result{T}"/> instance.
264
+
/// </summary>
265
+
/// <param name="selector">The function to apply to the value of the current <see cref="Result{T}"/> instance.</param>
266
+
/// <returns>
267
+
/// Returns <see cref="Success"/> if the current <see cref="Result{T}"/> is in a successful state, and the action invocation is also successful; otherwise; <see cref="Failure"/>.
/// Applies the provided selector function to the value of the current <see cref="Result{T}"/> instance.
240
273
/// </summary>
241
274
/// <param name="selector">The function to apply to the value of the current <see cref="Result{T}"/> instance.</param>
242
275
/// <typeparam name="TResult">The underlying type of the result produced by the selector function.</typeparam>
243
276
/// <returns>
244
-
/// Returns a new <see cref="Result{TResult}"/> instance containing the result of the function if the current
245
-
/// <see cref="Result{T}"/> instance is in a successful state; otherwise, returns the current failed <see cref="Result{T}"/> instance.
277
+
/// Returns <see cref="Success{T}"/> if the current <see cref="Result{T}"/> is in a successful state, and the action invocation is also successful; otherwise; <see cref="Failure{T}"/>.
0 commit comments