ValueCollections.Block 0.0.5-alpha

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

// Install ValueCollections.Block as a Cake Tool
#tool nuget:?package=ValueCollections.Block&version=0.0.5-alpha&prerelease

Block is an immutable array with value equality. It builds upon ImmutableArray<T>, a standard type in .NET.

To install the nuget package:

dotnet add package ValueCollections.Block --prerelease

Example usage:

using ValueCollections;

// Equality based on the contents
Block.Create(1, 2, 3) == Block.Create(1, 2, 3); // true

// Works inside of records
record DataBlock(
    int Index, 
    Block<string> Entries);

var db0 = new DataBlock(3, Block.Create("a", "b"));
var db1 = new DataBlock(3, Block.Create("a", "b"));
db0 == db1 // true

// And vice-versa. There's no depth limit, this is all based on default equality comparers.
record UserId(string Value);

var userIds0 = Block.Create(new UserId("abc"), new UserId("def"));
var userIds1 = Block.Create(new UserId("abc"), new UserId("def"));
userIds0 == userIds1 // true

// Works as a key in Dictionary, HashMap
// or anything that uses GetHashCode.
var dict = new Dictionary<Block<int>, string>
{
    [Block.Create(1, 2, 3)] = "Entry1"
};
dict[Block.Create(1, 2, 3)]; // "Entry1"

// Supports IEnumerable<T> and IReadOnlyList<T> for the widest interop
// possible with LINQ and other collection APIs:
var items = Block.Create(1, 2, 3);
var odds = items.Where(i => i % 2 == 1);
var list = new List<int>(items);

// Supports C# 8 slices and ranges:
var slice = block[1..^1];

// .ToBlock() extension method provides easy conversion for all existing collection types
myArray.ToBlock();
myArray.Where(condition).Select(selector).ToBlock();
myList.ToBlock();
myDictionary.ToBlock(); // not sure why you'd do this, but you can!

// Supports IImmutableList<T>, which means it can be used as a drop-in replacement for ImmutableList or ImmutableArray.

// Update operations are non-destructive:
var newBlock = block.Append(item); // does not modify the original
var newBlock = block.SetItem(2, item); // use this instead of block[2] = item;

Block is highly unstable and experimental at this stage. Not every method is yet covered by unit tests. The design might still change.

Rationale

Why the name Block?

It's short and it's consistent with the equivalent planned F# feature also based on ImmutableArray.

Why do we need this?

Comparing objects for equality is common and it's becoming more common with record types. Unfortunately, all collection types in .NET, including those in ImmutableCollections, default to reference equality, which means they don't work in records.

Why should it be immutable?

Anything that supports equality should be immutable, since it can be used as keys in dictionaries and maps. In a DDD sense, this type represents a value, not an entity.

Why is this a reference type when ImmutableArray is a value type?

Value types support default (zero) initialization, which means either Block throws exceptions when in that state, or defends against them with checks, slowing down performance. With nullable reference types, C# is also more helpful at telling whether you're forgetting to initialize something. We can leverage this by making Block a reference type. ImmutableArray is a value type because it tries to be a zero-overhead alternative to ImmutableList. We don't have the same goals. Block could be based on ImmutableList, in theory.

Won't this be slow compared to T[]?

It's a thin wrapper around a T[], so you're basically paying one extra allocation. Array access and iteration is as fast as regular arrays. Any mutation will involve a full copy; that is O(n). For building up a collection, I would suggest ImmutableList for now, which is built to be very efficient at adding and removing elements. For memory-like access, T[] is still fine, but .NET also now has more specialized types like Span and Memory.

Questions that may become frequently asked

Can I customize equality with an EqualityComparer or a StringComparison?

Not in general. This type is designed to work with the item's intrinsic equality. Custom equality should be provided by the type T of items you put it, by implementing IEquatable<T> or otherwise overriding equality. That said, there are some methods in the IImmutableList explicit implementation that take one, they exist for compatibility. Reference types that don't override equality or provide it via IEquatable<T> will be compared by reference.

Can I use this on .NET Framework?

Yes, provided you are using a .NET Standard 2.0 compatible version (4.6.2 and above, I believe.) Side note: you can use records on .NET Framework.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
0.0.6-alpha 151 4/18/2022
0.0.5-alpha 116 4/17/2022
0.0.4-alpha 107 4/7/2022
0.0.3-alpha 112 4/7/2022
0.0.2-alpha 122 4/7/2022
0.0.1-alpha 116 3/30/2022

Prerelease experimental version