Strilanc.PickleJar
1.0.1
dotnet add package Strilanc.PickleJar --version 1.0.1
NuGet\Install-Package Strilanc.PickleJar -Version 1.0.1
<PackageReference Include="Strilanc.PickleJar" Version="1.0.1" />
paket add Strilanc.PickleJar --version 1.0.1
#r "nuget: Strilanc.PickleJar, 1.0.1"
// Install Strilanc.PickleJar as a Cake Addin #addin nuget:?package=Strilanc.PickleJar&version=1.0.1 // Install Strilanc.PickleJar as a Cake Tool #tool nuget:?package=Strilanc.PickleJar&version=1.0.1
Parse and pack simple binary formats by describing the format as a combination of basic binary elements.
A 'jar' is a combination parser/packer. The library includes basic jars, like a jar for big-endian 32-bit integers, as well as combinators that augment jars into more complicated jars, like 'repeat 5 times' and 'followed by'.
Combining jars is much less error prone than hand-writing parsers and packers, but gives comparable performance thanks to runtime optimization and compilation.
Follow the project url for more information and usage examples.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial usable release. Parsing is optimized at runtime in most cases, but packing is not. Fixed a bug where analyzing 'string' for blittability would hang.