For example, I want to insert into the btree, and the btree is sorted by v2, without modifying the source code of btree library
So basically I want to do CRUD on the btree(Create a node and then insert, Retrieve the node, Update the node by changing the v2,Delete the node by v1)
It will be better if it can generalize to arbitrary item and sort by certain element.
https://forum.golangbridge.org/t/how-to-use-github-com-google-btree/4086/3
For example, I want to insert into the btree, and the btree is sorted by v2, without modifying the source code of btree library
So basically I want to do CRUD on the btree(Create a node and then insert, Retrieve the node, Update the node by changing the v2,Delete the node by v1)
It will be better if it can generalize to arbitrary item and sort by certain element.