Exemplo n.º 1
0
 public Switch(TElem value, TArgs args) : this()
 {
     Set   = true;
     Value = value;
     Args  = args;
 }
Exemplo n.º 2
0
 public Switch(TElem value) : this()
 {
     Set   = true;
     Value = value;
 }
Exemplo n.º 3
0
 public void Extract(out T t, out U u)
 {
     t = TElem.GetValueOrDefault();
     u = UElem.GetValueOrDefault();
 }
Exemplo n.º 4
0
 public Node(TElem value)
 {
     elem = value;
     Size = 1;
 }
Exemplo n.º 5
0
 public Or <T, U> Do(Action <T> func)
 {
     TElem.Do(func);
     return(this);
 }