示例#1
0
 public void Interpret(CellProcessor processor, Tree <Cell> table)
 {
     new Traverse <Cell>()
     .Rows.First(row => selectValue = new ValuePhrase(row).Evaluate(processor))
     .Rows.All(row => SelectRow(processor, row))
     .VisitTable(table);
 }
示例#2
0
 public void Interpret(CellProcessor processor, Tree<Cell> table)
 {
     new Traverse<Cell>()
         .Rows.First(row => selectValue = new ValuePhrase(row).Evaluate(processor))
         .Rows.All(row => SelectRow(processor, row))
         .VisitTable(table);
 }