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