ListIndexexists()

Determines if an element at the given position exists or not

Usage

BOOLEAN = ListIndexexists( list, position, delimiter )
Argument Summary
list list
position position
delimiter delimiter - default comma (,) [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

ListIndexexists(
   list=?, 
   position=?, 
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListIndexexists( ArgumentCollection={
   list : ?, 
   position : ?, 
   delimiter : ?
} );