using System; namespace DataStructures.BPlusTreeSpace { public partial class BPlusTree where TKey : IComparable { public interface INode where TKey : IComparable { int GetLocation(TKey key); // returns null if no split, otherwise returns split info //Split Insert(TKey key, TValue value); } } }