File tree 2 files changed +24
-4
lines changed
2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 1
- ## 0.1.0 (Unreleased )
1
+ ## 0.1.0 (2017-08-15 )
2
2
3
- * TBD*
3
+ Basic filter features
4
+
5
+ - New Filter
6
+ - Configuring
7
+ - Insert
8
+ - Insert Unique
9
+ - Lookup
10
+ - Delete
11
+ - Item Count
12
+ - Save
13
+ - Load
Original file line number Diff line number Diff line change @@ -16,6 +16,16 @@ Install via `go get`
16
16
17
17
## Usage
18
18
19
+ - [ New Filter] ( #new-filter )
20
+ - [ Configuring] ( #configuration )
21
+ - [ Insert] ( #insert )
22
+ - [ Insert Unique] ( #insert-unique )
23
+ - [ Lookup] ( #lookup )
24
+ - [ Delete] ( #delete )
25
+ - [ Item Count] ( #item-count )
26
+ - [ Save] ( #save )
27
+ - [ Load] ( #load )
28
+
19
29
### New Filter
20
30
21
31
Create a new filter with default configuration
@@ -66,7 +76,7 @@ func main() {
66
76
}
67
77
```
68
78
69
- ### InsertUnique
79
+ ### Insert Unique
70
80
71
81
Inserting items into a filter only if they do not already exist
72
82
@@ -135,7 +145,7 @@ func main() {
135
145
}
136
146
```
137
147
138
- ### ItemCount
148
+ ### Item Count
139
149
140
150
Getting the item count of filter. ** Using Insert with duplicates will cause the
141
151
item count to be more like a total items inserted count** . Using InsertUnique
You can’t perform that action at this time.
0 commit comments