StructSort

Sorts a struct according to the specified arguments and returns an array of struct keys

Method Signature

StructSort(struct=[structloose], sortType=[any], sortOrder=[string], path=[string], callback=[function:Comparator])

Arguments

Argument
Type
Required
Description
Default

struct

struct

true

The struct to sort

sortType

any

false

An optional sort type to apply to that type - if a callback is given in this position it will be used as that argument

text

sortOrder

string

false

The sort order applicable to the sortType argument

asc

path

string

false

callback

function:Comparator

false

An optional callback to use as the sorting function. You can alternatively pass a Java Comparator.

Examples

Numeric sorting

Run Example

someStruct = { 
	RED : 93,
	YELLOW : 90,
	GREEN : 94
};
result = structSort( someStruct, "numeric", "desc" );
writeOutput( lcase( JSONSerialize( result ) ) );

Result: ["green", "red", "yellow"]

Sort by subelement

Run Example

Result: ["glan","scott","george"]

Date sorting using callback

Compare values via dateCompare

Result: Anne (49), Thomas (42), Jim (35),

Additional Examples

Run Example

Run Example

Last updated

Was this helpful?