mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
30 lines
464 B
Go
30 lines
464 B
Go
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//go:build btreeInstrumentation
|
|
// +build btreeInstrumentation
|
|
|
|
package roaring
|
|
|
|
type dTree struct {
|
|
t *tree
|
|
}
|
|
|
|
type treeInst struct {
|
|
deCopied int64
|
|
}
|
|
|
|
func (t *tree) didCopy(n int) {
|
|
t.deCopied += int64(n)
|
|
}
|
|
|
|
func (d *d) didCopy(n int) {
|
|
d.t.deCopied += int64(n)
|
|
}
|
|
|
|
func (t *tree) countCopies() int64 {
|
|
return t.deCopied
|
|
}
|
|
|
|
func (d *d) setTree(t *tree) {
|
|
d.t = t
|
|
}
|