Menso.Tools.Scrambler 1.0.0

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

// Install Menso.Tools.Scrambler as a Cake Tool
#tool nuget:?package=Menso.Tools.Scrambler&version=1.0.0

Tools.Scrambler

This library has utilities to shuffle lists of generic types using the Fisher–Yates shuffle algorithm.

Quick Installation Guide

Install Package


dotnet add package Menso.Tools.Scrambler

Usage

Use cases:

var list = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
var seed = 123;

list.Shuffle(); // shuffles the list randomly
// or
list.Shuffle(seed); // shuffles the list always the same way, depending on the seed
// or
list.CryptoStrongShuffle(); // shuffles the list using the CryptoRandom class

We are open to suggestions and collaborations

Product 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 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.
  • net7.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 209 11/30/2023
0.0.3.6 122 10/31/2023
0.0.3.5 3,070 8/3/2023
0.0.3.4 126 8/3/2023
0.0.3.3 124 7/31/2023