Versions Compared

Key

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

...

This would give rise to constant time look up in such cases.

If this solution is not implemented, users can work around this problem wrapping lists in container nodes, with the container being included in the descendant query, e.g. instead of //books[@title='Matilda'], change the model and use //books/book[@title='Matilda'] as a query. This would then have O(1) performance.

Work Breakdown for Implementation

...