|
5 | 5 | <title>LinksPlatform's Platform.Collections.Methods Template Library</title> |
6 | 6 | <summary>LinksPlatform's Platform.Collections.Methods is a Template Library what contains standard implementation of methods for collections.</summary> |
7 | 7 | <description>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.</description> |
8 | | - <releaseNotes>RecursionlessSizeBalancedTreeMethods detach bug fix.</releaseNotes> |
9 | | - <version>0.1.4</version> |
| 8 | + <releaseNotes>DoublyLinkedLists split into two implementations absolute and relative. |
| 9 | +Absolute implementation means there is a single global list with fixed location (can be decided on initialization). |
| 10 | +Relative implementation means there are many lists and each is relative to some element's location (must be decided on each read/write operation). |
| 11 | +Better translation from C#.</releaseNotes> |
| 12 | + <version>0.2.0</version> |
10 | 13 | <authors>Konstantin Diachenko</authors> |
11 | 14 | <owners>Konstantin Diachenko</owners> |
12 | 15 | <copyright>Konstantin Diachenko</copyright> |
|
24 | 27 | <file src="icon.png" target="images/icon.png" /> |
25 | 28 | <file src="Platform.Collections.Methods.TemplateLibrary.targets" target="build\native\Platform.Collections.Methods.TemplateLibrary.targets" /> |
26 | 29 | <file src="Platform.Collections.Methods.h" target="lib\native\include\Platform.Collections.Methods.h" /> |
27 | | - <file src="Lists\CircularDoublyLinkedListMethods.h" target="lib\native\include\Lists\CircularDoublyLinkedListMethods.h" /> |
| 30 | + <file src="Lists\AbsoluteCircularDoublyLinkedListMethods.h" target="lib\native\include\Lists\AbsoluteCircularDoublyLinkedListMethods.h" /> |
| 31 | + <file src="Lists\AbsoluteDoublyLinkedListMethodsBase.h" target="lib\native\include\Lists\AbsoluteDoublyLinkedListMethodsBase.h" /> |
| 32 | + <file src="Lists\AbsoluteOpenDoublyLinkedListMethods.h" target="lib\native\include\Lists\AbsoluteOpenDoublyLinkedListMethods.h" /> |
28 | 33 | <file src="Lists\DoublyLinkedListMethodsBase.h" target="lib\native\include\Lists\DoublyLinkedListMethodsBase.h" /> |
29 | | - <file src="Lists\OpenDoublyLinkedListMethods.h" target="lib\native\include\Lists\OpenDoublyLinkedListMethods.h" /> |
| 34 | + <file src="Lists\RelativeCircularDoublyLinkedListMethods.h" target="lib\native\include\Lists\RelativeCircularDoublyLinkedListMethods.h" /> |
| 35 | + <file src="Lists\RelativeDoublyLinkedListMethodsBase.h" target="lib\native\include\Lists\RelativeDoublyLinkedListMethodsBase.h" /> |
| 36 | + <file src="Lists\RelativeOpenDoublyLinkedListMethods.h" target="lib\native\include\Lists\RelativeOpenDoublyLinkedListMethods.h" /> |
30 | 37 | <file src="Trees\RecursionlessSizeBalancedTreeMethods.h" target="lib\native\include\Trees\RecursionlessSizeBalancedTreeMethods.h" /> |
31 | 38 | <file src="Trees\SizeBalancedTreeMethods.h" target="lib\native\include\Trees\SizeBalancedTreeMethods.h" /> |
32 | 39 | <file src="Trees\SizedAndThreadedAVLBalancedTreeMethods.h" target="lib\native\include\Trees\SizedAndThreadedAVLBalancedTreeMethods.h" /> |
|
0 commit comments