gpeCreateMapEntry
gpeCreateMapEntry([ ?schematicNamet_schematicName] [?symbolNamet_symbolName] [ ?templatel_template] [?verbose{t|nil} ] ) =>l_mapEntry/ nil
Description
Creates a map entry DPL that stores the schematic name of an instance, along with its symbol mapping.
Arguments
|
Specifies a map entry, which serves as a template. Provides the values for schematic and symbol names if not otherwise specified. |
|
Value Returned
Example
mapEntry1 = gpeCreateMapEntry(?schematicName "M9" ?symbolName "B")
=> (nil symbol "B" schName "M9")
templateEntry = gpeCreateMapEntry(?schematicName "M1")
=> (nil schName "M1")
Creates a map entry DPL with a template:
mapEntry2 = gpeCreateMapEntry(?symbolName "C" ?template templateEntry)
=> (nil symbol "C" schName "M1")
Return to top