BitManipulator 1.0.5

dotnet add package BitManipulator --version 1.0.5
NuGet\Install-Package BitManipulator -Version 1.0.5
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="BitManipulator" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BitManipulator --version 1.0.5
#r "nuget: BitManipulator, 1.0.5"
#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 BitManipulator as a Cake Addin
#addin nuget:?package=BitManipulator&version=1.0.5

// Install BitManipulator as a Cake Tool
#tool nuget:?package=BitManipulator&version=1.0.5

A set of extension methods for doing bitwise manipulation such as endianness (bytes<-->integral types) and rotation.

Endianness-related functionality: short, ushort, int, uint, long, ulong : conversion between (to and from) individual items of these and byte arrays, and between arrays of any of these (UInt32[], for example) and byte arrays.
Little and big-endian methods exist at feature and/or type parity.

Rotation-related functionality: byte, short, ushort, int, uint, long, ulong : left and right bitwise circular rotation ("rotate no carry").
Please note: the rotation implemented here is NOT "rotate through carry"! As such, sign is NOT handled specially for signed types.

Endianness conversions operating on multiple values (bulk operations) are performance-enhanced with optimised 'unsafe' implementations. They are considerably faster than comparable operations provided by the BCL.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

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.5 9,204 1/25/2015
1.0.4 1,208 10/17/2014
1.0.2 1,137 10/16/2014
1.0.1 1,109 10/16/2014
1.0.0 1,158 10/11/2014

Swapped out internal copy methods for ones implemented in by another NuGet package of mine, PerfCopy.