This version is out of date, covering development from v7.0.0 to v7.5.6. It is maintained here only for inbound reference links from elsewhere. It is no longer actively updated.

Jump to the current version of aTbRef

Tinderbox 7 Icon

List.nsort([$Attribute])


Operator Type: 

Operator Scope of Action: 

Operator Purpose: 

Operator First Added: 

Operator Altered: 

 Function   [other Function type actions]

 Item   [operators of similar scope]

 Data manipulation   [other Data manipulation operators]

 Baseline

 


List.nsort()

The basic form

$MyList = $MyList.nsort() 

$MyList = $MyList.nsort().reverse() 

This function re-sorts the referenced list in ascending numerical sort order. This means sorting '1,2,11' not 1,11,2' such as occurs with sort() and a lexical sort. A numerical sort is really only useful for numerical data. For text, consider List.sort() or List.isort(), both of which give lexical sorts of differing case sensitivity. Or, if using $Name or $Path data, use the optional long from (below) and let the nominated attribute's data type set the form of sort, e.g for date sorting, sort on a Date-type attribute.

The resulting sort order can be reversed overall by chaining the List.nsort() and List.reverse() functions.

List.nsort($Attribute)

Here the referenced list must be a list of note names or paths, i.e. a list $Name data or $Path data (but not a mix of the two). If note names aren't unique within the document, path values must be used to achieve correct sort. This form of sort cannot be used with any other sort of value list. This operator cannot be applied to any list of values, unlike the short form above.

In this form, the sort order can be based on the value of the stipulated $Attribute, being derived from the item identified by the $Name or $Path that is the lis item being evaluated:

$MyList = $collect(children, $Name).nsort($PageNumber) 

$MyList = $collect_if(find($Prototype=="pProduct"), $Price>0,$Path).nsort($Price) 

In this long form usage, the sort ordering is based on the data type of $Attribute: