identity()

Synopsis

Returns its argument. Effectively a no-op, this function exists merely to be the default function in functions like Find( ).

Syntax

identity ( item As Any ) As Any 
Argument Type Description
item Any The object to be returned.

Example 1

Intent >identity("a") 
--> "a" 

Example 2

Intent >identity(height) 
--> 10 

Example 3

Intent >identity(Me) 
--> Root