databricks / sjsonnet

Apache License 2.0
267 stars 55 forks source link

std.sort ignores keyF #204

Closed CertainLach closed 3 weeks ago

CertainLach commented 7 months ago

std.sort doesn't seem to respect keyF argument:

std.sort([1,2,3], keyF=function(v) error "not reached?")

Returns [1, 2, 3], keyF function is not called.