MATTAR.PerformanceCollections 1.0.0

dotnet add package MATTAR.PerformanceCollections --version 1.0.0
                    
NuGet\Install-Package MATTAR.PerformanceCollections -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MATTAR.PerformanceCollections" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MATTAR.PerformanceCollections" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="MATTAR.PerformanceCollections" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MATTAR.PerformanceCollections --version 1.0.0
                    
#r "nuget: MATTAR.PerformanceCollections, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MATTAR.PerformanceCollections@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MATTAR.PerformanceCollections&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=MATTAR.PerformanceCollections&version=1.0.0
                    
Install as a Cake Tool

MATTAR.PerformanceCollections

Bibliothèque .NET de collections hautes performances reposant sur des allocations natives et des blocs unsafe.
Elle propose une table de hachage de Cuckoo, une table de hachage parfaite et un arbre de van Emde Boas — trois structures de données orientées vitesse, conçues pour les scénarios où la latence compte.


✨ Fonctionnalités

Structure Description
CuckooHashTable Table de hachage à déplacement de coucou. Insertions et recherches en O(1) amorti avec un facteur de charge maîtrisé (≤ 45 %).
PerfectHashTable Table de hachage parfaite à deux niveaux (FKS). Construite à partir d'un ensemble de clés statique ; recherches en O(1) strict.
VanEmdeBoas Arbre de van Emde Boas. Deux modes : dynamique (Cuckoo, insertions à la volée) et statique (PerfectTable, construction à partir d'un ensemble de clés pré-connu, immutable après construction). Successeur/prédécesseur en O(log log U) sur un univers de taille 2^U (U ≤ 30).

**Points forts 😗*

  • Allocation native alignée (via NativeMemory) — zéro pression sur le GC.
  • Blocs unsafe et inlining agressif (AggressiveInlining) pour des performances maximales.
  • Cible .NET 8.
Product 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 71 3/20/2026