ExponentialGolombCoding 1.0.0
dotnet add package ExponentialGolombCoding --version 1.0.0
NuGet\Install-Package ExponentialGolombCoding -Version 1.0.0
<PackageReference Include="ExponentialGolombCoding" Version="1.0.0" />
paket add ExponentialGolombCoding --version 1.0.0
#r "nuget: ExponentialGolombCoding, 1.0.0"
// Install ExponentialGolombCoding as a Cake Addin #addin nuget:?package=ExponentialGolombCoding&version=1.0.0 // Install ExponentialGolombCoding as a Cake Tool #tool nuget:?package=ExponentialGolombCoding&version=1.0.0
Exponential Golomb Coding
This project implements Exponential Golomb Coding in C# with zero allocation
Usage
There are two ways to use this project:
- Copy the project source file: Include the source code directly in your project.
- Use NuGet: Install the package using the following command:
dotnet add package ExponentialGolombCoding
Encoding
Encode a single unsigned integer with order 0:
var bytes = new ExpGolombCoder().Encode(863, 0);
Encode multiple unsigned integer with order 0:
var bytes = new ExpGolombCoder().Encode([22,33,77,88], 0);
Encode multiple unsigned integer with order 0 to Base64:
var str = new ExpGolombCoder().EncodeToBase64([22,33,77,88], 0);
Decoding
The ExpGolombCoder
class also provides equivalent methods for decoding the encoded data.
Zero Allocation
All methods in ExpGolombCoder
avoid allocation during processing, except for the final result (bytes or string). This improves performance for memory-intensive tasks.
The project includes the ExpGolombCoderCore
class. This class offers methods for encoding and decoding with absolutely no allocation. Refer to the unit tests for usage examples.
Note: Using ExpGolombCoderCore
might require more complex code compared to the simpler ExpGolombCoder
class.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- 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 | 139 | 3/10/2024 |