-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathuint32_store_example_test.go
72 lines (60 loc) · 1.58 KB
/
uint32_store_example_test.go
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
package faststringmap_test
import (
"fmt"
"sort"
"strings"
"github.com/sensiblecodeio/faststringmap"
)
func Example() {
m := exampleSource{
"key1": 42,
"key2": 27644437,
"l": 2,
}
fm := faststringmap.NewUint32Store(m)
// add an entry that is not in the fast map
m["m"] = 4
// sort the keys so output is the same for each test run
keys := make([]string, 0, len(m))
for k := range m {
keys = append(keys, k)
}
sort.Strings(keys)
// lookup every key in the fast map and print the corresponding value
for _, k := range keys {
v, ok := fm.LookupString(k)
fmt.Printf("%q: %d, %v\n", k, v, ok)
}
// Dump out the store to aid in understanding the implementation
fmt.Println()
dump := fmt.Sprintf("%+v", fm)
dump = strings.ReplaceAll(dump, "}", "}\n")
dump = strings.ReplaceAll(dump, "[", "[\n ")
fmt.Println(dump)
// Output:
//
// "key1": 42, true
// "key2": 27644437, true
// "l": 2, true
// "m": 0, false
//
// {store:[
// {nextLo:1 nextLen:2 nextOffset:107 valid:false value:0}
// {nextLo:3 nextLen:1 nextOffset:101 valid:false value:0}
// {nextLo:0 nextLen:0 nextOffset:0 valid:true value:2}
// {nextLo:4 nextLen:1 nextOffset:121 valid:false value:0}
// {nextLo:5 nextLen:2 nextOffset:49 valid:false value:0}
// {nextLo:0 nextLen:0 nextOffset:0 valid:true value:42}
// {nextLo:0 nextLen:0 nextOffset:0 valid:true value:27644437}
// ]}
}
type exampleSource map[string]uint32
func (s exampleSource) AppendKeys(a []string) []string {
for k := range s {
a = append(a, k)
}
return a
}
func (s exampleSource) Get(k string) uint32 {
return s[k]
}