mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
29 lines
517 B
Go
29 lines
517 B
Go
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//go:build !btreeInstrumentation
|
|
// +build !btreeInstrumentation
|
|
|
|
package roaring
|
|
|
|
//lint:ignore U1000 this is conditional on a build flag
|
|
//nolint:unused
|
|
type dTree struct {
|
|
}
|
|
|
|
//lint:ignore U1000 this is conditional on a build flag
|
|
//nolint:unused
|
|
type treeInst struct {
|
|
}
|
|
|
|
func (t *tree) didCopy(n int) {
|
|
}
|
|
|
|
func (d *d) didCopy(n int) {
|
|
}
|
|
|
|
func (t *tree) countCopies() int64 {
|
|
return 0
|
|
}
|
|
|
|
func (d *d) setTree(t *tree) {
|
|
}
|