masbicudo.data.structures 1.2.2

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

// Install masbicudo.data.structures as a Cake Tool
#tool nuget:?package=masbicudo.data.structures&version=1.2.2

MASBicudo Data Structures - Immutables, Continuous.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.2 94 2/4/2015
1.2.1 40 2/4/2015
1.2.0 89 7/31/2014
1.1.0 56 7/31/2014
0.1.0.1 76 6/23/2014

**Immutable tree and Continuous set.**
       
       Immutable structures cannot be changed after they are created,
       you must replace the entire thing when changes must be made.
       Good for multi-threading, functional programming, few-writes/many-reads approaches.
       Tree builders are available (e.g. convert flat data to tree, e.g. DB table).
       Uses tree visitors to change tree.
       ////
       
       Continuous set is a set that is not discrete. It's better explained with an example:
       a set with all values between 1.1 (inclusive) and 2.7 (exclusive).
       Can have multiple sequences, actually can represent a set of any type
       for which an IComparable<T> can be implemented (Double, String, DateTime, Int32).
       Set operations available (e.g. union, exclusion, intersection)
       ////
       
       Tests can be found in GitHub project page.