Narumikazuchi.Collections 4.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package Narumikazuchi.Collections --version 4.0.3
NuGet\Install-Package Narumikazuchi.Collections -Version 4.0.3
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="Narumikazuchi.Collections" Version="4.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Narumikazuchi.Collections --version 4.0.3
#r "nuget: Narumikazuchi.Collections, 4.0.3"
#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 Narumikazuchi.Collections as a Cake Addin
#addin nuget:?package=Narumikazuchi.Collections&version=4.0.3

// Install Narumikazuchi.Collections as a Cake Tool
#tool nuget:?package=Narumikazuchi.Collections&version=4.0.3

A small framework containing some collections i wrote for my work.

Contents:
- EqualityComparison delegate
- IEnumerable extension methods for the introduced collections
- IEnumerable extension method for moving items within the collections
- ItemMoveDirection enum
- IFilterable interface
- IReadOnlyCollection2 interface, additionally exposing Contains(T) and CopyTo(T[], int)
- IReadOnlyList2 interface, additionally exposing Contains(T), CopyTo(T[], int) and IndexOf(T)
- ISearchableCollection interface
- ISerachableList interface
- ItemChangedEventArgs
- ISortable and IAutoSortable interface
- SortDirection enum
- ITree and ITreeNode interfaces
- BinaryTree and BinaryNode classes
- RadixTree and RadixNode classes
- Trie and TrieNode classes
- ObservableList class
- Register and ObservableRegister classes
- IRegister interface
- several abstract Collection base classes to extend

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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 was computed.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Narumikazuchi.Collections:

Package Downloads
Narumikazuchi.Networking.Sockets

Provides Client and Server classes for communication over socket connections. For more information visit https://github.com/Narumikazuchi/Networking/wiki.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.1 454 6/13/2022
6.0.0 437 5/30/2022
5.0.1 452 4/27/2022
4.0.3 580 7/14/2021
4.0.2 381 7/14/2021
3.0.0 566 7/14/2021
2.0.0 648 6/25/2021
1.1.4 655 6/17/2021
1.1.3 512 6/3/2021
1.1.2 407 6/3/2021
1.1.1 411 6/3/2021
1.1.0 577 6/2/2021
1.0.0 513 5/31/2021

Implemented IAutoSortable interface.
Added new extensions methods for ToRegister (added the ability to use IComparer or Comparison)
Implemented new SearchableReadOnlyCollectionBase and SearchableCollectionBase abstract base classes
Changed ItemChanged event of ObservableList and ObservableRegister to use the actual type of the sender instead of object
Improved the handling of items in the Trie structure