// session will be Err if the user is Err; Ok of a session for the user when Ok.
Res<Session> session = TryGetUser.Map(user => NewSession(user.Secrets));
public Task<Res<TOut>> MapAsync<TOut>(
Func<T, Task<TOut>> map
)
[Missing <typeparam name="TOut"/> documentation for "M:Orx.Fun.Result.Res`1.MapAsync``1(System.Func{`0,System.Threading.Tasks.Task{``0}})"]