コード例 #1
0
 public static Try <B> Select <A, B>(this Try <A> either, Func <A, B> projector)
 {
     return(either.Map(projector));
 }