Surprise! Operators Can Force Document Order
- You've sorted some employee records into a sequence
“$sorted-employees”
- Now that you have them, you want just the names
- The location path:
$sorted-employees/name
- would return the names in document order not
sorted
- because it contains a “/”
(with thanks to Michael Kay, for this example)