Product Documentation
Cadence SKILL Language Reference
Product Version IC23.1, November 2023

removeListDuplicates

removeListDuplicates( 
l_list 
) 
=> l_newList

Description

Removes duplicate entries from a SKILL list and returns a new list with the duplicates removed.

Arguments

l_list

A SKILL list.

Value Returned

l_newList

Copy of l_list with all duplicates removed.

Examples

removeListDuplicates("a" 1 "a" 2 "a" 3 "a" 4)
=> ("a" 1 2 3 4)

Related Topics

remd

remove

remq


Return to top
 ⠀
X