aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/orddict.xml
blob: 1b8b74534bd6bd732dc80d8eb8fd3546dfea26b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
<?xml version="1.0" encoding="latin1" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>2000</year><year>2011</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      The contents of this file are subject to the Erlang Public License,
      Version 1.1, (the "License"); you may not use this file except in
      compliance with the License. You should have received a copy of the
      Erlang Public License along with this software. If not, it can be
      retrieved online at http://www.erlang.org/.
    
      Software distributed under the License is distributed on an "AS IS"
      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
      the License for the specific language governing rights and limitations
      under the License.
    
    </legalnotice>

    <title>orddict</title>
    <prepared>Robert Virding</prepared>
    <responsible>nobody</responsible>
    <docno></docno>
    <approved>nobody</approved>
    <checked>no</checked>
    <date>2007-04-16</date>
    <rev>B</rev>
    <file>orddict.sgml</file>
  </header>
  <module>orddict</module>
  <modulesummary>Key-Value Dictionary as Ordered List</modulesummary>
  <description>
    <p><c>Orddict</c> implements a <c>Key</c> - <c>Value</c> dictionary.
      An <c>orddict</c> is a representation of a dictionary, where a
      list of pairs is used to store the keys and values. The list is
      ordered after the keys.</p>
    <p>This module provides exactly the same interface as the module
      <c>dict</c> but with a defined representation. One difference is
      that while <c>dict</c> considers two keys as different if they
      do not match (<c>=:=</c>), this module considers two keys as
      different if and only if they do not compare equal
      (<c>==</c>).</p>
  </description>

  <section>
    <title>DATA TYPES</title>
    <code type="none">
ordered_dictionary()
  as returned by new/0</code>
  </section>
  <funcs>
    <func>
      <name>append(Key, Value, Orddict1) -> Orddict2</name>
      <fsummary>Append a value to keys in a dictionary</fsummary>
      <type>
        <v>Key = Value = term()</v>
        <v>Orddict1 = Orddict2 = ordered_dictionary()</v>
      </type>
      <desc>
        <p>This function appends a new <c>Value</c> to the current list
          of values associated with <c>Key</c>.  An exception is
          generated if the initial value associated with <c>Key</c> is
          not a list of values.</p>
      </desc>
    </func>
    <func>
      <name>append_list(Key, ValList, Orddict1) -> Orddict2</name>
      <fsummary>Append new values to keys in a dictionary</fsummary>
      <type>
        <v>ValList = [Value]</v>
        <v>Key = Value = term()</v>
        <v>Orddict1 = Orddict2 = ordered_dictionary()</v>
      </type>
      <desc>
        <p>This function appends a list of values <c>ValList</c> to
          the current list of values associated with <c>Key</c>. An
          exception is generated if the initial value associated with
          <c>Key</c> is not a list of values.</p>
      </desc>
    </func>
    <func>
      <name>erase(Key, Orddict1) -> Orddict2</name>
      <fsummary>Erase a key from a dictionary</fsummary>
      <type>
        <v>Key = term()</v>
        <v>Orddict1 = Orddict2 = ordered_dictionary()</v>
      </type>
      <desc>
        <p>This function erases all items with a given key from a
          dictionary.</p>
      </desc>
    </func>
    <func>
      <name>fetch(Key, Orddict) -> Value</name>
      <fsummary>Look-up values in a dictionary</fsummary>
      <type>
        <v>Key = Value = term()</v>
        <v>Orddict = ordered_dictionary()</v>
      </type>
      <desc>
        <p>This function returns the value associated with <c>Key</c>
          in the dictionary <c>Orddict</c>. <c>fetch</c> assumes that
          the <c>Key</c> is present in the dictionary and an exception
          is generated if <c>Key</c> is not in the dictionary.</p>
      </desc>
    </func>
    <func>
      <name>fetch_keys(Orddict) -> Keys</name>
      <fsummary>Return all keys in a dictionary</fsummary>
      <type>
        <v>Orddict = ordered_dictionary()</v>
        <v>Keys = [term()]</v>
      </type>
      <desc>
        <p>This function returns a list of all keys in the dictionary.</p>
      </desc>
    </func>
    <func>
      <name>filter(Pred, Orddict1) -> Orddict2</name>
      <fsummary>Choose elements which satisfy a predicate</fsummary>
      <type>
        <v>Pred = fun(Key, Value) -> bool()</v>
        <v>&nbsp;Key = Value = term()</v>
        <v>Orddict1 = Orddict2 = ordered_dictionary()</v>
      </type>
      <desc>
        <p><c>Orddict2</c> is a dictionary of all keys and values in
          <c>Orddict1</c> for which <c>Pred(Key, Value)</c> is <c>true</c>.</p>
      </desc>
    </func>
    <func>
      <name>find(Key, Orddict) -> {ok, Value} | error</name>
      <fsummary>Search for a key in a dictionary</fsummary>
      <type>
        <v>Key = Value = term()</v>
        <v>Orddict = ordered_dictionary()</v>
      </type>
      <desc>
        <p>This function searches for a key in a dictionary. Returns
          <c>{ok, Value}</c> where <c>Value</c> is the value associated
          with <c>Key</c>, or <c>error</c> if the key is not present in
          the dictionary.</p>
      </desc>
    </func>
    <func>
      <name>fold(Fun, Acc0, Orddict) -> Acc1</name>
      <fsummary>Fold a function over a dictionary</fsummary>
      <type>
        <v>Fun = fun(Key, Value, AccIn) -> AccOut</v>
        <v>Key = Value = term()</v>
        <v>Acc0 = Acc1 = AccIn = AccOut = term()</v>
        <v>Orddict = ordered_dictionary()</v>
      </type>
      <desc>
        <p>Calls <c>Fun</c> on successive keys and values of
          <c>Orddict</c> together with an extra argument <c>Acc</c>
          (short for accumulator). <c>Fun</c> must return a new
          accumulator which is passed to the next call. <c>Acc0</c> is
          returned if the list is empty. The evaluation order is
          undefined.</p>
      </desc>
    </func>
    <func>
      <name>from_list(List) -> Orddict</name>
      <fsummary>Convert a list of pairs to a dictionary</fsummary>
      <type>
        <v>List = [{Key, Value}]</v>
        <v>Orddict = ordered_dictionary()</v>
      </type>
      <desc>
        <p>This function converts the <c>Key</c> - <c>Value</c> list
          <c>List</c> to a dictionary.</p>
      </desc>
    </func>
    <func>
      <name>is_key(Key, Orddict) -> bool()</name>
      <fsummary>Test if a key is in a dictionary</fsummary>
      <type>
        <v>Key = term()</v>
        <v>Orddict = ordered_dictionary()</v>
      </type>
      <desc>
        <p>This function tests if <c>Key</c> is contained in
          the dictionary <c>Orddict</c>.</p>
      </desc>
    </func>
    <func>
      <name>map(Fun, Orddict1) -> Orddict2</name>
      <fsummary>Map a function over a dictionary</fsummary>
      <type>
        <v>Fun = fun(Key, Value1) -> Value2</v>
        <v>&nbsp;Key = Value1 = Value2 = term()</v>
        <v>Orddict1 = Orddict2 = ordered_dictionary()</v>
      </type>
      <desc>
        <p><c>map</c> calls <c>Func</c> on successive keys and values
          of <c>Orddict</c> to return a new value for each key.
          The evaluation order is undefined.</p>
      </desc>
    </func>
    <func>
      <name>merge(Fun, Orddict1, Orddict2) -> Orddict3</name>
      <fsummary>Merge two dictionaries</fsummary>
      <type>
        <v>Fun = fun(Key, Value1, Value2) -> Value</v>
        <v>&nbsp;Key = Value1 = Value2 = Value3 = term()</v>
        <v>Orddict1 = Orddict2 = Orddict3 = ordered_dictionary()</v>
      </type>
      <desc>
        <p><c>merge</c> merges two dictionaries, <c>Orddict1</c> and
          <c>Orddict2</c>, to create a new dictionary.  All the <c>Key</c>
          - <c>Value</c> pairs from both dictionaries are included in
          the new dictionary.  If a key occurs in both dictionaries then
          <c>Fun</c> is called with the key and both values to return a
          new value. <c>merge</c> could be defined as:</p>
        <code type="none">
merge(Fun, D1, D2) ->
    fold(fun (K, V1, D) ->
                 update(K, fun (V2) -> Fun(K, V1, V2) end, V1, D)
         end, D2, D1).</code>
        <p>but is faster.</p>
      </desc>
    </func>
    <func>
      <name>new() -> ordered_dictionary()</name>
      <fsummary>Create a dictionary</fsummary>
      <desc>
        <p>This function creates a new dictionary.</p>
      </desc>
    </func>
    <func>
      <name>size(Orddict) -> int()</name>
      <fsummary>Return the number of elements in an ordered dictionary</fsummary>
      <type>
        <v>Orddict = ordered_dictionary()</v>
      </type>
      <desc>
        <p>Returns the number of elements in an <c>Orddict</c>.</p>
      </desc>
    </func>
    <func>
      <name>store(Key, Value, Orddict1) -> Orddict2</name>
      <fsummary>Store a value in a dictionary</fsummary>
      <type>
        <v>Key = Value = term()</v>
        <v>Orddict1 = Orddict2 = ordered_dictionary()</v>
      </type>
      <desc>
        <p>This function stores a <c>Key</c> - <c>Value</c> pair in a
          dictionary. If the <c>Key</c> already exists in <c>Orddict1</c>,
          the associated value is replaced by <c>Value</c>.</p>
      </desc>
    </func>
    <func>
      <name>to_list(Orddict) -> List</name>
      <fsummary>Convert a dictionary to a list of pairs</fsummary>
      <type>
        <v>Orddict = ordered_dictionary()</v>
        <v>List = [{Key, Value}]</v>
      </type>
      <desc>
        <p>This function converts the dictionary to a list
          representation.</p>
      </desc>
    </func>
    <func>
      <name>update(Key, Fun, Orddict1) -> Orddict2</name>
      <fsummary>Update a value in a dictionary</fsummary>
      <type>
        <v>Key = term()</v>
        <v>Fun = fun(Value1) -> Value2</v>
        <v>&nbsp;Value1 = Value2 = term()</v>
        <v>Orddict1 = Orddict2 = ordered_dictionary()</v>
      </type>
      <desc>
        <p>Update a value in a dictionary by calling <c>Fun</c> on
          the value to get a new value.  An exception is generated if
          <c>Key</c> is not present in the dictionary.</p>
      </desc>
    </func>
    <func>
      <name>update(Key, Fun, Initial, Orddict1) -> Orddict2</name>
      <fsummary>Update a value in a dictionary</fsummary>
      <type>
        <v>Key = Initial = term()</v>
        <v>Fun = fun(Value1) -> Value2</v>
        <v>&nbsp;Value1 = Value2 = term()</v>
        <v>Orddict1 = Orddict2 = ordered_dictionary()</v>
      </type>
      <desc>
        <p>Update a value in a dictionary by calling <c>Fun</c> on
          the value to get a new value.  If <c>Key</c> is not present
          in the dictionary then <c>Initial</c> will be stored as
          the first value. For example <c>append/3</c> could be defined
          as:</p>
        <code type="none">
append(Key, Val, D) ->
    update(Key, fun (Old) -> Old ++ [Val] end, [Val], D).</code>
      </desc>
    </func>
    <func>
      <name>update_counter(Key, Increment, Orddict1) -> Orddict2</name>
      <fsummary>Increment a value in a dictionary</fsummary>
      <type>
        <v>Key = term()</v>
        <v>Increment = number()</v>
        <v>Orddict1 = Orddict2 = ordered_dictionary()</v>
      </type>
      <desc>
        <p>Add <c>Increment</c> to the value associated with <c>Key</c>
          and store this value.  If <c>Key</c> is not present in
          the dictionary then <c>Increment</c> will be stored as
          the first value.</p>
        <p>This could be defined as:</p>
        <code type="none">
update_counter(Key, Incr, D) ->
    update(Key, fun (Old) -> Old + Incr end, Incr, D).</code>
        <p>but is faster.</p>
      </desc>
    </func>
  </funcs>

  <section>
    <title>Notes</title>
    <p>The functions <c>append</c> and <c>append_list</c> are included
      so we can store keyed values in a list <em>accumulator</em>. For
      example:</p>
    <pre>
> D0 = orddict:new(),
  D1 = orddict:store(files, [], D0),
  D2 = orddict:append(files, f1, D1),
  D3 = orddict:append(files, f2, D2),
  D4 = orddict:append(files, f3, D3),
  orddict:fetch(files, D4).
[f1,f2,f3]    </pre>
    <p>This saves the trouble of first fetching a keyed value,
      appending a new value to the list of stored values, and storing
      the result.
      </p>
    <p>The function <c>fetch</c> should be used if the key is known to
      be in the dictionary, otherwise <c>find</c>.</p>
  </section>

  <section>
    <title>See Also</title>
    <p><seealso marker="dict">dict(3)</seealso>,
      <seealso marker="gb_trees">gb_trees(3)</seealso></p>
  </section>
</erlref>