Ejemplo n.º 1
0
 static Try <int> addUser2(UserMapping user) => () =>
 user.ToString().Length;
Ejemplo n.º 2
0
 static Task <Either <Exception, int> > addUser(UserMapping user) =>
 Right <Exception, int>(user.ToString().Length).AsTask();