File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,23 +12,23 @@ L<MixHash|/type/MixHash>. Being unordered, these containers can be more
12
12
efficient than L < Lists|/type/List > for looking up elements or dealing with
13
13
repeated items.
14
14
15
- If you want to get the contained objects (elements) I < without duplicates >
15
+ If you want to get the contained objects (elements) B < without duplicates >
16
16
and you only care I < whether > an element is in the collection or not,
17
- you can use a L < Set|/type/Set > or L < SetHash|/type/SetHash > . ( If you want
17
+ you can use a L < Set|/type/Set > or L < SetHash|/type/SetHash > . If you want
18
18
to get rid of duplicates but still preserve order, take a look at the
19
- L < unique|/routine/unique > routine for L < List|/type/List > .)
19
+ L < unique|/routine/unique > routine for L < List|/type/List > .
20
20
21
21
= begin comment
22
22
= defn Set or SetHash
23
23
Collection of distinct objects
24
24
= end comment
25
25
26
- If you want to keep track of the I < number of times each object appeared > ,
26
+ If you want to keep track of the B < number of times each object appeared > ,
27
27
you can use a L < Bag|/type/Bag > or L < BagHash|/type/BagHash > . In these
28
28
Baggy containers each element has a weight (an unsigned integer)
29
29
indicating the number of times the same object has been included in the
30
30
collection. The types L < Mix|/type/Mix > and L < MixHash|/type/MixHash > are
31
- similar, but they also allow I < fractional weights > .
31
+ similar, but they also allow B < fractional weights > .
32
32
33
33
= begin comment
34
34
= defn Bag or BagHash
You can’t perform that action at this time.
0 commit comments