From bd87ef8de47a0bfcfaea16b86db6d0d3e038daef Mon Sep 17 00:00:00 2001 From: Garrison Jensen Date: Thu, 13 Jun 2024 08:58:38 -0700 Subject: [PATCH] Update README --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 65354b0..22d8be8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,17 @@ [![Gem Version](https://badge.fury.io/rb/sorted_containers.svg)](https://badge.fury.io/rb/sorted_containers) -SortedContainers is a fast implementation of sorted arrays, sets, and hashes in pure Ruby. It is based on the [sortedcontainers](https://grantjenks.com/docs/sortedcontainers/) Python library by Grant Jenks. +SortedContainers is a fast implementation of sorted arrays, sets, and hashes in pure Ruby. + +- SortedArray, SortedSet, and SortedHash +- Pure Ruby +- Fast Performance +- (almost) Identical API to Array, Set, and Hash +- No dependencies +- Benchmarks +- Unit Tested + +This library is based on the [sortedcontainers](https://grantjenks.com/docs/sortedcontainers/) Python library by Grant Jenks. SortedContainers provides three main classes: `SortedArray`, `SortedSet`, and `SortedHash`. Each class is a drop-in replacement for the corresponding Ruby class, but with the added benefit of maintaining the elements in sorted order.