# File lib/puppet/parameter.rb, line 117
117:         def initialize
118:             # We often look values up by name, so a hash makes more sense.
119:             @values = {}
120: 
121:             # However, we want to retain the ability to match values in order,
122:             # but we always prefer directly equality (i.e., strings) over regex matches.
123:             @regexes = []
124:             @strings = []
125:         end