Skip to content

Commit cca44cd

Browse files
author
Claude4.0s
committed
- Mirrors ConcurrentSkipListSet's behavior accurately, adds snapshot() which allows obtaining a point in time snapshot of the Set, with a better return type than toArray()'s Object[].
- document updates - MurMur3Hash finalizaition added.
1 parent 5e9092c commit cca44cd

File tree

5 files changed

+284
-592
lines changed

5 files changed

+284
-592
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ System.setProperty("io.debug.detailed.paths", "true");
489489
| [ConcurrentSet](userguide.md#concurrentset) | Thread-safe Set supporting null elements. |
490490
| [ConcurrentNavigableSetNullSafe](userguide.md#concurrentnavigablesetnullsafe) | Thread-safe `NavigableSet` supporting null elements. |
491491
| [ClassValueSet](userguide.md#classvalueset) | High-performance Set optimized for fast `Class` membership testing using JVM-optimized `ClassValue`. |
492-
| [IntervalSet](userguide.md#intervalset) | Thread-safe interval set with O(log n) performance, auto-merge intervals (or not - optional), and smart boundary handling for 20+ types. |
492+
| [IntervalSet](userguide.md#intervalset) | Thread-safe interval set with O(log n) performance, automatically merges intervals, smart boundary handling for 20+ types, and you can add your own. |
493493
| **Maps** | |
494494
| [CompactMap](userguide.md#compactmap) | Memory-efficient Map that dynamically adapts its storage structure based on size. |
495495
| [CaseInsensitiveMap](userguide.md#caseinsensitivemap) | A `Map` wrapper that provides case-insensitive, case-retentive keys and inherits the features of the wrapped map (e.g., thread-safety from `ConcurrentMap` types, multi-key support from `MultiKeyMap`, sorted, thread-safe, allow nulls from `ConcurrentNavigableMapNullSafe`). |

0 commit comments

Comments
 (0)