-
help understanding a function
hello everyone!
i am not sure to really understand the operations order in this function .
.quantQ.io.saveSplayedTab:{[tabPath;pvar;table]// tabPath — path where to store the table
// pvar — variable to sort and index on for fast querying
// table — name of the table to save
:@[;pvar;`p#] pvar xasc (` sv (tabPath;`;table;`)) set .Q.en[tabPath] get table;
};
i am under the impression that because of left to right evaluation, it is saved before it is ordered. can someone explain ?
thank you!!
Log in to reply.