StructDelete()

Deletes the given key from the structure, optionally returning whether or not it was found before deletion

Usage

BOOLEAN = StructDelete( struct, key, indicate )
Argument Summary
struct struct1
key key
indicate indicate flag - default to false [optional]

Calling

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

StructDelete(
   struct=?, 
   key=?, 
   indicate=?
);

Supports passing parameters as a structure using ArgumentCollection:

StructDelete( ArgumentCollection={
   struct : ?, 
   key : ?, 
   indicate : ?
} );