KGIntelligence.PineCore
1.2.0
dotnet add package KGIntelligence.PineCore --version 1.2.0
NuGet\Install-Package KGIntelligence.PineCore -Version 1.2.0
<PackageReference Include="KGIntelligence.PineCore" Version="1.2.0" />
<PackageVersion Include="KGIntelligence.PineCore" Version="1.2.0" />
<PackageReference Include="KGIntelligence.PineCore" />
paket add KGIntelligence.PineCore --version 1.2.0
#r "nuget: KGIntelligence.PineCore, 1.2.0"
#:package KGIntelligence.PineCore@1.2.0
#addin nuget:?package=KGIntelligence.PineCore&version=1.2.0
#tool nuget:?package=KGIntelligence.PineCore&version=1.2.0
PineCore: C# swiss-knife-library with useful data structures and utility methods
Overview
This library is a part of the efforts of KG Intelligence to open source our technology to be used freely by the c# community. The library contains the commonly used within KG Intelligence methods and data structures. The goal of the project is to gradually increase the content of our open source libraries such PineCore to the point where all the source code of KG Intelligence - implemented within the company - is included in open source libraries.
Content
Data Structures:
- Succinct Data Structures: compressed bit representations offering query methods to be used without the need of decompression. Such query methods include
Rank,Select. The succinct datastructure APIs are:IBitswith propertiesIReadOnlyList<nuint> Data { get; }andnuint Size { get; }IBitIndiceswith propertiespublic nuint Size { get; }and methodsbool GetBit(nuint index)ISuccinctIndiceswith propertiesnuint SetBitsCount { get; },nuint UnsetBitsCount { get; },nuint Size { get; }and methodsnuint RankSetBits(nuint bitPositionCutoff),nuint RankUnsetBits(nuint bitPositionCutoff),nuint SelectSetBits(nuint bitCountCutoff),nuint SelectUnsetBits(nuint bitCountCutoff)ISuccinctCompressedIndiceswith the same properties and methods asISuccinctIndicesISerializableBitswith mehtodsvoid Write(BinaryWriter writer),void Write(string filePath),static abstract TSelf Read(BinaryReader reader)andstatic abstract TSelf Read(string filePath)
- Succinct Data Structures: compressed bit representations offering query methods to be used without the need of decompression. Such query methods include
Utility Methods:
- Bit Twiddling Operations not included in
System.Numerics.BitOperationssuch as:ReverseBits,Rank,Select; these methods operate onuint,ulong, and also on the native-sized integersnuint.
- Bit Twiddling Operations not included in
Usage
The library can be installed as a Nuget package. The nuget package link is https://www.nuget.org/packages/KGIntelligence.PineCore/.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net7.0 is compatible. 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 was computed. 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. |
-
net7.0
- PineEffects (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release.