Esempio n. 1
0
 public Opt(T val)
 {
     _val = new _opt.One <T>(val);
 }
Esempio n. 2
0
 public Opt()
 {
     _val = new _opt.None <T>();
 }