JesseRussell.GenericSequence
1.0.0
Install-Package JesseRussell.GenericSequence -Version 1.0.0
dotnet add package JesseRussell.GenericSequence --version 1.0.0
<PackageReference Include="JesseRussell.GenericSequence" Version="1.0.0" />
paket add JesseRussell.GenericSequence --version 1.0.0
#r "nuget: JesseRussell.GenericSequence, 1.0.0"
// Install JesseRussell.GenericSequence as a Cake Addin
#addin nuget:?package=JesseRussell.GenericSequence&version=1.0.0
// Install JesseRussell.GenericSequence as a Cake Tool
#tool nuget:?package=JesseRussell.GenericSequence&version=1.0.0
Represents a generic immutable sequence of T. Equality is, like strings, based on value not reference.
It's essencially a wrapper for immutableArray, but with value based equality instead of reference based equality. For example: (5,2,2,4) equals (5,2,2,4) even if the reference is not the same, and (3,2) obviously doesn't equal (5,4,6); this example is working with Sequences of type: Sequence.
The hashcode is generated by combining the hashcodes of all the elements in the set, with default(int) being the hashcode for an empty set.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
-
net5.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.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 157 | 2/2/2021 |
inital release