Hyperbee.Collections
1.0.0
See the version list below for details.
dotnet add package Hyperbee.Collections --version 1.0.0
NuGet\Install-Package Hyperbee.Collections -Version 1.0.0
<PackageReference Include="Hyperbee.Collections" Version="1.0.0" />
paket add Hyperbee.Collections --version 1.0.0
#r "nuget: Hyperbee.Collections, 1.0.0"
// Install Hyperbee.Collections as a Cake Addin #addin nuget:?package=Hyperbee.Collections&version=1.0.0 // Install Hyperbee.Collections as a Cake Tool #tool nuget:?package=Hyperbee.Collections&version=1.0.0
Hyperbee.Collection
Additional collections types and extensions.
AhoCorasickTrie
A trie that will find strings or phrases and return values of type TData
for each string or phrase found. Type param TData
is the type of the data returned when a match is found.
ConcurrentSet
A set based on System.Collections.Concurrent.ConcurrentDictionary
Deque
A generic double-ended queue class based of the work of Tom Jacques
DynamicDictionaryBase
A base class that supports the ability to easily create dynamic dictionaries with specific value types
LinkedDictionary
A dictionary comprised of a stack of dictionaries this allows pushing and popping scopes
var linked = new LinkedDictionary<string, string>();
// push an initial set of keys
linked.Push( new Dictionary<string, string>
{
["first"] = "default_first",
["last"] = "default_last",
["suffix"] = "",
} );
linked.Push( new Dictionary<string, string>
{
["first"] = "Tim", // new scope masks original values
["last"] = "Jones", // new scope masks original values
["address"] = "123 Main St." // New key
} );
OrderedDictionary
A dictionary that preserves insertion order for enumerations
OrderedSet
A set using on System.Collections.ObjectModel.KeyedCollection
Status
Branch | Action |
---|---|
develop |
|
main |
Help
See Todo
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Microsoft.CodeAnalysis.CSharp.Scripting (>= 4.9.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Hyperbee.Collections:
Package | Downloads |
---|---|
Hyperbee.Collections.Benchmark
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.0-develop.241113202437 | 0 | 11/14/2024 |
1.0.0 | 691 | 4/11/2024 |