In my opinion your method for ensuring the root node gets counted is already elegant, though perhaps worthy of a comment if you're writing it in a routine/method rather than issuing in at the command prompt.
This only matters for very long loops (and you'd need a pretty extreme scenario for it to matter even then), but a post-conditional 'quit' is only meaningful if there's more code after it, and it comes with a performance cost, so this line:
USER>for count = count:1 set ref=$query(@ref) quit:ref=""
...should be:
USER>for count = count:1 set ref=$query(@ref) if (ref="") quit
Pls. don't forget to mark your question as "answered" on Developer Community, please click the checkmark alongside the answer you (as author of the question) accept
Thanks
That counts the first-level subscripts, but it ignores the root node, as well as deeper-level subscripts, e.g:
Otto
In my opinion your method for ensuring the root node gets counted is already elegant, though perhaps worthy of a comment if you're writing it in a routine/method rather than issuing in at the command prompt.
This only matters for very long loops (and you'd need a pretty extreme scenario for it to matter even then), but a post-conditional 'quit' is only meaningful if there's more code after it, and it comes with a performance cost, so this line:
...should be:
Perhaps someone has a more elegant way to make sure the root node gets counted...?
Otto
Pls. don't forget to mark your question as "answered" on Developer Community,
please click the checkmark alongside the answer you (as author of the question) accept