Roaring.Net
1.0.0-alpha.3
This is a prerelease version of Roaring.Net.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Roaring.Net --version 1.0.0-alpha.3
NuGet\Install-Package Roaring.Net -Version 1.0.0-alpha.3
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="Roaring.Net" Version="1.0.0-alpha.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Roaring.Net --version 1.0.0-alpha.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Roaring.Net, 1.0.0-alpha.3"
#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.
// Install Roaring.Net as a Cake Addin #addin nuget:?package=Roaring.Net&version=1.0.0-alpha.3&prerelease // Install Roaring.Net as a Cake Tool #tool nuget:?package=Roaring.Net&version=1.0.0-alpha.3&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Roaring.Net
A .Net wrapper for CRoaring - a C implementation of RoaringBitmap.
Usage
using var rb1 = new Roaring32Bitmap();
using var rb2 = new Roaring32Bitmap();
rb1.AddMany([1, 2, 3, 4, 5, 100, 1000]);
rb1.Optimize();
rb2.AddMany([3, 4, 5, 7, 50]);
rb2.Optimize();
using var result = rb1.And(rb2);
Console.WriteLine(result.Contains(2));
Console.WriteLine(result.Contains(4));
Console.WriteLine(result.Contains(5));
Requirements
Linux
- gcc
- VCpkg and please do
vcpkg integrate install
. (CMake for CRoaring will be handled by VCpkg on your behalf.) - run
build/build-libs.sh
to build a CRoaring library
Windows
- VS2022 or later
- VCpkg and please do
vcpkg integrate install
. (CMake for CRoaring will be handled by VCpkg on your behalf.) - run
build/build-libs.bat
to build a CRoaring library
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- No dependencies.
-
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 | 109 | 9/29/2024 |
1.0.0-alpha.4 | 57 | 9/3/2024 |
1.0.0-alpha.3 | 215 | 8/18/2024 |
1.0.0-alpha.2 | 64 | 8/11/2024 |
1.0.0-alpha.1 | 56 | 7/23/2024 |