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

null

null( 
g_value 
) 
=> t / nil

Description

Checks if an object is equal to nil.

null is a type predicate function.

Arguments

g_value

A data object.

Value Returned

t

If g_value is equal to nil.

nil

If g_value is not equal to nil.

Examples

null( 3 )        
=> nil
null('())        
=> t
null( nil)       
=> t

Related Topics

equal


Return to top
 ⠀
X