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

yCoord

yCoord( 
l_list 
) 
=> g_result

Description

Returns the tail of the list, that is, the list without its first element.

The xCoord and yCoord functions are aliases for the car and cadr functions

Arguments

l_list

A list of elements.

Value Returned

g_result

Returns the end of a list, or the list minus the first element.

Examples

xValue = 300 
yValue = 400
aCoordinate = xValue:yValue
=> ( 300 400 )
xCoord( aCoordinate ) 
=> 300
yCoord( aCoordinate ) 
=> 400

Related Topics

xCoord

car

caar, caaar, caadr, cadr, caddr, cdar, cddr, ...


Return to top
 ⠀
X