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

loadi

loadi( 
t_fileName 
[ t_password ] 
) 
=> t

Description

Identical to load, except that loadi ignores errors encountered during the load, prints an error message, and then continues loading.

Opens the named file, repeatedly calls lineread to read in the file, immediately evaluates each form after it is read in, then closes the file when end of file is reached. Unlike load, loadi ignores errors encountered during the load. Rather than stopping, loadi causes an error message to be printed and then continues to end of file. Otherwise, loadi is the same as load.

Arguments

t_fileName

File to be loaded, with the proper extension to specify the language mode.

t_password

Password, if t_fileName is an encrypted file.

Value Returned

t

The file is loaded.

Examples

Loads the testfns.il file.

loadi( "testfns.il" )

Loads the test.il file from the tmp directory.

loadi( "/tmp/test.il")

Related Topics

encrypt

include

load

lineread


Return to top
 ⠀
X