Tinderbox v10 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".