13 lines
211 B
C#
13 lines
211 B
C#
|
using System;
|
|||
|
|
|||
|
|
|||
|
namespace DataStructures.BPlusTreeSpace
|
|||
|
{
|
|||
|
public partial class BPlusTree<TKey, TValue>
|
|||
|
where TKey : IComparable<TKey>
|
|||
|
{
|
|||
|
internal class Split
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|