Platform.Collections.Methods.TemplateLibrary
0.2.0
See the version list below for details.
dotnet add package Platform.Collections.Methods.TemplateLibrary --version 0.2.0
NuGet\Install-Package Platform.Collections.Methods.TemplateLibrary -Version 0.2.0
<PackageReference Include="Platform.Collections.Methods.TemplateLibrary" Version="0.2.0" />
paket add Platform.Collections.Methods.TemplateLibrary --version 0.2.0
#r "nuget: Platform.Collections.Methods.TemplateLibrary, 0.2.0"
// Install Platform.Collections.Methods.TemplateLibrary as a Cake Addin #addin nuget:?package=Platform.Collections.Methods.TemplateLibrary&version=0.2.0 // Install Platform.Collections.Methods.TemplateLibrary as a Cake Tool #tool nuget:?package=Platform.Collections.Methods.TemplateLibrary&version=0.2.0
LinksPlatform's Platform.Collections.Methods is a Template Library what contains set of C++ classes templates to build custom implementations of collections on top of provided standard methods implementations. Use Platform.Collections.Methods.h file to include the library.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
native | native is compatible. |
-
native 0.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.
DoublyLinkedLists split into two implementations absolute and relative.
Absolute implementation means there is a single global list with fixed location (can be decided on initialization).
Relative implementation means there are many lists and each is relative to some element's location (must be decided on each read/write operation).
Better translation from C#.