Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Output Order: returns the all hits in decreasing output priority order.
  • Rule Order: returns the all hits in rule order. Therefore may depend on the sequence of rules.
  • Collect: returns the all hits in arbitrary order. An operator can be added to apply simple function to outputs. If no operator specified, result is list of the all output entries.

Collect operators are;

      1. Sum sum (+): sum of all the distinct outputs.
      2. Min min (<): smallest value of the all the outputs.
      3. Max max (>): largest value of the al the outputs.
      4. Count count (#): number of the distinct outputs.

...