1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 08:32:40 +08:00
This commit is contained in:
2022-05-20 17:17:31 +08:00
parent d4d68dc263
commit ed02794b04
11 changed files with 436 additions and 11 deletions

15
tree/btree_test.go Normal file
View File

@ -0,0 +1,15 @@
package tree
import "testing"
func TestNewBTree(t *testing.T) {
tr := NewBTree[Int](32)
_ = tr
}
type Int int
func (a Int) Less(b Int) bool {
return a < b
}