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
/// <param name="converter">A mapping function to be applied to the value, if present.</param>
70
+
/// <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="Optional{T}.None"/>.</returns>
/// <param name="converter">A mapping function to be applied to the value, if present.</param>
103
+
/// <param name="token">The token that can be used to cancel the operation.</param>
104
+
/// <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="Optional{T}.None"/>.</returns>
/// If a value is present, apply the provided mapping function to it, and if the result is
691
+
/// non-null, return an Optional describing the result. Otherwise, returns <see cref="None"/>.
692
+
/// </summary>
693
+
/// <typeparam name="TResult">The type of the result of the mapping function.</typeparam>
694
+
/// <param name="mapper">A mapping function to be applied to the value, if present.</param>
695
+
/// <param name="token">The token that can be used to cancel the operation.</param>
696
+
/// <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>
/// If a value is present, apply the provided mapping function to it, and if the result is
707
+
/// non-null, return an Optional describing the result. Otherwise, returns <see cref="None"/>.
708
+
/// </summary>
709
+
/// <typeparam name="TResult">The type of the result of the mapping function.</typeparam>
710
+
/// <param name="mapper">A mapping function to be applied to the value, if present.</param>
711
+
/// <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>
/// If a value is present, apply the provided mapping function to it, and if the result is
717
+
/// non-null, return an Optional describing the result. Otherwise returns <see cref="None"/>.
718
+
/// </summary>
719
+
/// <typeparam name="TResult">The type of the result of the mapping function.</typeparam>
720
+
/// <param name="mapper">A mapping function to be applied to the value, if present.</param>
721
+
/// <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