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
/// <returns>A Choice1Of2 of the input value after applying the mapping function, or the original Choice2Of2 value if the input is Choice2Of2.</returns>
24
24
letmap(mapping:'T->'U)(source:Choice<'T,'T2>)=match source with Choice1Of2 v -> Choice1Of2 (mapping v)| Choice2Of2 e -> Choice2Of2 e
0 commit comments