BloomFilter 1.0.0
See the version list below for details.
dotnet add package BloomFilter --version 1.0.0
NuGet\Install-Package BloomFilter -Version 1.0.0
<PackageReference Include="BloomFilter" Version="1.0.0" />
paket add BloomFilter --version 1.0.0
#r "nuget: BloomFilter, 1.0.0"
// Install BloomFilter as a Cake Addin #addin nuget:?package=BloomFilter&version=1.0.0 // Install BloomFilter as a Cake Tool #tool nuget:?package=BloomFilter&version=1.0.0
A Bloom Filter is a probabalistic data structure that Implements the Add() and Contains() methods in a memory efficient manner when compared to the more traditional Hash Set. However, the Bloom Filter has some draw backs:
* It will sometimes indicate that an element is in the set when it isn't. The False Positive rate can be decreased by using more memory.
*The capacity of the Bloom Filter is fixed at creation time. (You can add more elements than the target capacity, but the False Positive rate continues to increase thereafter).
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has 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.