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

addToExportList

addToExportList(
l_symbols
) 
=> t

Description

Adds the specified symbols to the namespace export list. This function does not throw any errors if a symbol is already exported. You can export any symbol from your namespace.

Arguments

l_symbols

Specify the symbols that you want to add to the namespace export list.

Value Returned

t

The specified symbols are successfully added to the namespace export list.

Examples

(addToExportList '(newNameSpace:::aaa newNameSpace:::bbb))
=> t
(useNamespace "newNameSpace")
=> t
(getSymbolNamespace 'aaa)
=> ns@newNameSpace

Related Topics

Namespace Functions


Return to top
 ⠀
X