// 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 Res<TOut> Map<TOut>(
Func<T, TOut> map
)
[Missing <typeparam name="TOut"/> documentation for "M:Orx.Fun.Result.Res`1.Map``1(System.Func{`0,``0})"]