This version is out of date, covering development from v9.5.0 to v9.7.3. 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 v9 Icon

List/Set.remove(matchValue)


Operator Type: 

Operator Scope of Action: 

Operator Purpose: 

Operator First Added: 

Operator Last Altered: 

 Function  [other Function type actions]

 List  [operators of similar scope]

 Data manipulation  [other Data manipulation operators]

 Baseline

 As at baseline


List.remove(matchValue)

This removes items from a list or set. The argument matchValue may be of the desired data type for matching. For example,

$MyList = $MyList.remove(0); 

returns a new list from which all elements equal to zero have been removed, and

$MyList = $MyList.remove("cat"); 

returns a new list from which call elements equal to "cat" have been removed.

$MyList = $MyList.remove("cat; dog; badger"); 

removes "cats", "dogs", and "badgers".