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

not

not( 
g_obj 
) 
=> t / nil

Description

Same as the ! operator. Returns t if the object is nil, and returns nil otherwise.

Arguments

g_obj

Any SKILL object.

Value Returned

t

If g_obj is nil.

nil

If g_obj is not nil..

Examples

(not nil)        
=> t
(not 123)  
=> nil
(not t)  
=> nil

Related Topics

Flow Control Functions

null


Return to top
 ⠀
X