CreateUuid()

Creates a string that represents an immutable universally unique identifier (UUID). A UUID represents a 128-bit value, with optional delimiter

Usage

STRING = CreateUuid( delimiter )
Argument Summary
delimiter defaults to returning the - (hypens) as a delimiter. [optional]

Calling

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

CreateUuid(
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

CreateUuid( ArgumentCollection={
   delimiter : ?
} );