⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ipersistentmap.cs

📁 Perst开源实时数据库
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -