Returns the specified vector object has no object.
Syntax
isEmpty( vector )
vector.isEmpty( )
Parameters
vector
|
the vector object to check.
|
Returns
boolean
|
true if the specified vector object contains no objects.
false if the specified vector object contains any objects.
|
Example
v = Vector( )
if v.isEmpty( ) then
print( "ok" )
end
|