Does the indexes operator sort the output? Why?
Test
- goto https://tiddler.wiki.com
- create a dictionary tiddler called test as below
jane: mother
loo : father
ana: dauhther
kian: son
- create another tiddler to test with below content
<$list filter="[[test]indexes[]]" variable=link>
* my name: <<link>>
</$list>
It produces
-
my name: ana
-
my name: jane
-
my name: kian
-
my name: loo
But I do not want to sort output internally!
EDIT: I know I can sort using sortby
, to retain the original order, but this is infeasible for large data.
EDIT ii: See the workaround for this case: The Indexes Operator - #8 by Mohammad