We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 850fdfc commit 82275aeCopy full SHA for 82275ae
btree/palm/pool.go
@@ -0,0 +1,9 @@
1
+package palm
2
+
3
+import "sync"
4
5
+var keyBundlePool = sync.Pool{
6
+ New: func() interface{} {
7
+ return &keyBundle{}
8
+ },
9
+}
0 commit comments