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

remprop

remprop( 
sl_id 
S_name 
) 
=> l_result / nil 

Description

Removes a property from a property list and returns the property’s former value.

Arguments

sl_id

Symbol or disembodied property list.

S_name

Property name.

Value Returned

l_result

Former value of the property as a single element list.

nil

The property does not exist.

Examples

Assigns the property pins to chip.

putprop( 'chip 8 'pins ) 
=> 8

Removes the property pins from chip.

get( 'chip 'pins ) 
=> 8
remprop( 'chip 'pins )
=> (8)
get( 'chip 'pins) 
=> nil

Related Topics

get

putprop


Return to top
 ⠀
X