Exemplo n.º 1
0
 public void SetHint(FuncionNodeHints hint, int value)
 {
     _hints &= ~(1 << (int)hint);
     _hints |= value << (int)hint;
 }
Exemplo n.º 2
0
 public bool HasHint(FuncionNodeHints hint)
 {
     return(((_hints >> (int)hint) & 0x1) != 0);
 }