Skip to content

Commit 10f782a

Browse files
committed
Modified how order is calculated
1 parent f30208c commit 10f782a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

resources/evaluate.q

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@
149149
.axq.i_NONPRIMCODE type data];
150150
values: ('[removeTrailingNewline; toString] each data);
151151
values: $[isAtomic and (1 >= count data); enlist values; values];
152-
order: $[1 ~ count data; iasc enlist data; iasc data];
152+
formatData: $[1 ~ count data; enlist data; data];
153+
order:@[{iasc x}; formatData; {"Not Yet Implemented for the input"}];
153154
returnDictionary: `name`type`values`order!(name;types;values;order);
154155
if[isKey; returnDictionary[`isKey]: isKey];
155156
if[attr[data] <> `; returnDictionary[`attributes]: attr data];

0 commit comments

Comments
 (0)