PowBasics 0.1.6

dotnet add package PowBasics --version 0.1.6
NuGet\Install-Package PowBasics -Version 0.1.6
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="PowBasics" Version="0.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PowBasics --version 0.1.6
#r "nuget: PowBasics, 0.1.6"
#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 PowBasics as a Cake Addin
#addin nuget:?package=PowBasics&version=0.1.6

// Install PowBasics as a Cake Tool
#tool nuget:?package=PowBasics&version=0.1.6

PowBasics

IEquatable / GetHashCodeAggregate

sealed class ArrRec : IEquatable<ArrRec>
{
	public string[] Arr { get; }
	public ArrRec(string[] arr) => Arr = arr;
	public bool Equals(ArrRec? other)
	{
		if (ReferenceEquals(null, other)) return false;
		if (ReferenceEquals(this, other)) return true;
		return Arr.Length == other.Arr.Length && Arr.Zip(other.Arr).All(t => t.Item1 == t.Item2);
	}
	public override bool Equals(object? obj) => ReferenceEquals(this, obj) || obj is ArrRec other && Equals(other);
	public override int GetHashCode() => Arr.GetHashCodeAggregate();
	public static bool operator ==(ArrRec? left, ArrRec? right) => Equals(left, right);
	public static bool operator !=(ArrRec? left, ArrRec? right) => !Equals(left, right);
}

Json

Create a converter

static class Converters
{
	public static readonly JsonConverter<Color> ColorConverter = JsonConverterMaker.Make<Color, ColorSer>(
		e => new(e.A, e.R, e.G, e.B),
		e => Color.FromArgb(e.A, e.R, e.G, e.B)
	);

	private sealed record ColorSer(byte A, byte R, byte G, byte B);
}

Create a converter factory to convert a generic type

class OptionConverterFactory : JsonConverterFactory
{
	public override bool CanConvert(Type typeToConvert) =>
		typeToConvert.IsGenericType &&
		typeToConvert.GetGenericTypeDefinition() == typeof(Option<>);

	public override JsonConverter CreateConverter(Type typeToConvert, JsonSerializerOptions options)
	{
		var wrappedType = typeToConvert.GetGenericArguments()[0];
		var converter = (JsonConverter)Activator.CreateInstance(typeof(OptionConverter<>).MakeGenericType(wrappedType))!;
		return converter;
	}


	private sealed class OptionConverter<T> : JsonConverter<Option<T>>
	{
		private sealed record Ser(bool HasValue, T V);
		private static Ser ToSer(Option<T> opt) => new(opt.IsSome, opt.IfNoneUnsafe(default(T))!);
		private static Option<T> FromSer(Ser ser) => ser.HasValue ? ser.V : None;

		public override Option<T> Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
		{
			using var doc = JsonDocument.ParseValue(ref reader);
			return FromSer(doc.Deserialize<Ser>(options)!);
		}

		public override void Write(Utf8JsonWriter writer, Option<T> value, JsonSerializerOptions options) =>
			JsonSerializer.Serialize(writer, ToSer(value), options);
	}
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.
  • net8.0

    • No dependencies.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on PowBasics:

Package Downloads
PowWinForms

WinForms reactive utilities

LINQPadExtras

LINQPad utility functions

PowTrees

Tree structure with algorithms

PowLINQPad

Reactive control and utilities for LINQPad

DynaServeLib

DynaServe

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.6 103 2/12/2024
0.1.5 91 1/31/2024
0.1.4 63 1/31/2024
0.1.3 74 1/31/2024
0.1.1 93 1/19/2024
0.1.0 81 1/19/2024
0.0.40 141 9/16/2023
0.0.39 127 9/16/2023
0.0.38 109 9/16/2023
0.0.37 143 9/16/2023
0.0.36 110 9/16/2023
0.0.35 123 9/15/2023
0.0.34 139 8/23/2023
0.0.33 138 8/22/2023
0.0.32 207 8/5/2023
0.0.31 122 7/30/2023
0.0.30 177 7/12/2023
0.0.29 143 7/12/2023
0.0.28 136 7/11/2023
0.0.27 147 7/10/2023
0.0.26 124 7/10/2023
0.0.25 118 7/10/2023
0.0.24 130 7/9/2023
0.0.23 146 7/5/2023
0.0.22 136 7/5/2023
0.0.21 148 7/5/2023
0.0.20 136 7/5/2023
0.0.19 120 7/5/2023
0.0.18 153 7/4/2023
0.0.17 140 7/2/2023
0.0.16 127 6/21/2023
0.0.15 133 6/15/2023
0.0.14 132 6/15/2023
0.0.13 117 6/15/2023
0.0.12 134 6/12/2023
0.0.11 143 6/5/2023
0.0.10 169 5/28/2023
0.0.9 165 5/28/2023
0.0.6 330 11/26/2022
0.0.5 308 11/26/2022
0.0.4 451 11/15/2022