Chapter 7. Dictionaries

Dictionaries are reference data lists used for verifying or categorizing values against certain black- or whitelists. Dictionaries are generally enumerable and finite, whereas eg. string patterns are dynamic and evaluated each time.

Examples of meaningful dictionaries are:

  1. A dictionary of product types like "jewelry", "menswear", "sportswear" etc.

  2. A dictionary of gender symbols like "M", "F" and maybe "UNKNOWN".

  3. A dictionary of age group names (eg. infant, child, young, mature, senior)

  4. Two dictionaries for male and female given names (in order to determine gender of persons)