项目作者: narimiran

项目描述 :
SortedTables in Nim, based on B-Trees
高级语言: Nim
项目地址: git://github.com/narimiran/sorta.git
创建时间: 2019-11-04T07:11:25Z
项目社区:https://github.com/narimiran/sorta

开源协议:MIT License

下载


Sorted Tables

SortedTable implementation using B-Tree
as an internal data structure.

The BTree algorithm is based on:

  • N. Wirth, J. Gutknecht:
    Project Oberon, The Design of an Operating System and Compiler;
    pages 174-190.

Public API tries to mimic API of Nim’s built-in Tables as much as possible.
The ommission of add procedure is done on purpose.

Installation

  1. nimble install sorta

Required Nim version is at least 1.0.0.

Usage

See the documentation.