empty?()

Synopsis

Returns True if list is the empty list . Returns False if list contains any items.

Syntax

empty? ( list As List ) As Boolean 
Argument Type Description
list List List to check.

Example 1

Intent >empty?({}) 
--> True 

Example 2

Intent >empty?({1,2,3}) 
--> False 

Example 3

Intent >empty?({{}}) 
--> False 
This example is a list containing an empty list , so it isn't empty.