ipersistentmap.cs

来自「Perst开源实时数据库」· CS 代码 · 共 21 行

CS
21
字号
using System;
#if USE_GENERICS
using System.Collections.Generic;
#else
using System.Collections;
#endif

namespace Perst
{
    ///<summary>
    /// Interface for scalable map. It can efficiently handle both small and large number of members.
    /// For small maps sorted array with binary search is used, for large maps - B-Tree 
    /// </summary>
#if USE_GENERICS
    public interface IPersistentMap<K,V> : IPersistent, IResource, IDictionary<K,V> where K:IComparable where V:class,IPersistent
#else
    public interface IPersistentMap : IPersistent, IResource, IDictionary
#endif
    {  
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?