public void Clear()
 {
     Comment("Clear attribute table");
     Loop.Descend_Pre(X.Set(Table.Length), _ => {
         Table[X].Set(0);
     });
 }
Example #2
0
 public void Clear(U8 clearVal)
 {
     Loop.Descend_Pre(X.Set(Values.Length), _ => {
         Values[X].Set(clearVal);
     });
 }