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
/// If a value is present, apply the provided mapping function to it, and if the result is
567
567
/// non-null, return an Optional describing the result. Otherwise, returns <see cref="None"/>.
568
568
/// </summary>
569
-
/// <typeparam name="TResult">The type of the result of the mapping function.</typeparam>
569
+
/// <typeparam name="TResult">The type of the mapping function result.</typeparam>
570
570
/// <param name="mapper">A mapping function to be applied to the value, if present.</param>
571
571
/// <returns>An Optional describing the result of applying a mapping function to the value of this Optional, if a value is present, otherwise <see cref="None"/>.</returns>
@@ -576,7 +576,7 @@ public Optional<TResult> Convert<TResult>(Converter<T, TResult> mapper)
576
576
/// If a value is present, apply the provided mapping function to it, and if the result is
577
577
/// non-null, return an Optional describing the result. Otherwise, returns <see cref="None"/>.
578
578
/// </summary>
579
-
/// <typeparam name="TResult">The type of the result of the mapping function.</typeparam>
579
+
/// <typeparam name="TResult">The type of the mapping function result.</typeparam>
580
580
/// <param name="mapper">A mapping function to be applied to the value, if present.</param>
581
581
/// <returns>An Optional describing the result of applying a mapping function to the value of this Optional, if a value is present, otherwise <see cref="None"/>.</returns>
0 commit comments