makeSortedKey
Syntax
makeSortedKey(args...)
Details
Combine the specified args as a BLOB scalar or vector.
makeSortedKey stores the keys in sorted order internally, while
returns the same result as makeKey.
Parameters
args are multiple scalars or vectors of the same length.
Returns
A BLOB scalar or vector.
Examples
makeSortedKey([`b,`a,`c], [`4,`2,`1])
// output: ["b4","a2","c1"]
set(makeSortedKey(1 2, 4 5))
Related Function: makeKey
