ResTFlatMap(FuncT, Res) Method
            Returns the error when IsErr; 
map(Unwrap()) when IsOk flattenning the result.
            Shorthand combining Map and Flatten calls.
            
static Res<Team> TryGetTeam() { .. } // tries to grab a team; might fail, hence, returns Res.
static Res TryPutTeam(Team team) { .. } // tries to put the team; might fail, hence, returns Res.
Res result = TryGetTeam().FlatMap(TryPutTeam);
// equivalently:
Res result = TryGetTeam().FlatMap(team => TryPutTeam(team));
// this is a shorthand for:
Res result = TryGetTeam()   // Res<Team>
    .Map(TryPutTeam)        // Res<Res>
    .Flatten();             // Res
Namespace: Orx.Fun.ResultAssembly: Orx.Fun.Result (in Orx.Fun.Result.dll) Version: 1.3.0+344c8bdd6f720ccfb2d8db7c61b76cf02be18f5f
public Res FlatMap(
	Func<T, Res> map
)
- map  FuncT, Res
 - Function (T -> Res) that maps the underlying value to a Res when IsOk.
 
Res