makeSortedKey

Syntax

makeSortedKey(args…)

Arguments

args are multiple scalars or vectors of the same length.

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.

First Release

1.30.16/2.00.4

Examples

$ makeSortedKey([`b,`a,`c], [`4,`2,`1])
["b4","a2","c1"]

$ set(makeSortedKey(1 2, 4 5))

Related Function: makeKey