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
<PackageReference Include="masbicudo.data.structures" Version="1.2.2" />
paket add masbicudo.data.structures --version 1.2.2
#r "nuget: masbicudo.data.structures, 1.2.2"
// 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 | 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.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
**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.