TDuplicates

From Soldat Community Wiki
Revision as of 19:44, 24 August 2013 by Mighty (talk | contribs) (new page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Description

Type used by Duplicates to define what happens when trying to add duplicate values to the list.

Declaration

 type TDuplicates = (
  dupIgnore,  // Ignore the new item, do not add it to the list.
  dupAccept,  // Accept duplicates, adding them to the list.
  dupError    // Raise an error when an attempt is made to add a duplicate.
 );