Gapotchenko.FX.Math 2022.2.7

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Gapotchenko.FX.Math --version 2022.2.7
NuGet\Install-Package Gapotchenko.FX.Math -Version 2022.2.7
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="Gapotchenko.FX.Math" Version="2022.2.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Gapotchenko.FX.Math --version 2022.2.7
#r "nuget: Gapotchenko.FX.Math, 2022.2.7"
#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 Gapotchenko.FX.Math as a Cake Addin
#addin nuget:?package=Gapotchenko.FX.Math&version=2022.2.7

// Install Gapotchenko.FX.Math as a Cake Tool
#tool nuget:?package=Gapotchenko.FX.Math&version=2022.2.7

Overview

The module provides extended math primitives.

MathEx

MathEx is a class provided by Gapotchenko.FX.Math. It offers extended mathematical functions, and serves as an addendum to a conventional System.Math class.

Swap

The swap operation is a widely demanded primitive:

Swap<T>(ref T val1, ref T val2)

Its implementation is trivial, but was found highly desired during real-life coding sessions. Swap primitive allows to keep a mind of developer more focused on important things, instead of writing tedious code like:

T temp = val1;
val1 = val2;
val2 = temp;

For comparison, please take a look at a concise version of the same:

MathEx.Swap(ref val1, ref val2);

An immediate improvement in readability.

Min/Max for Three Values

The conventional Math class provides ubiquitous Min/Max primitives for two values.

However, such a limitation on number of values was proven counter-productive on more than several occasions. MathEx fixes that by providing Min/Max operations for three values:

using Gapotchenko.FX.Math;

Console.WriteLine(MathEx.Max(1, 2, 3));

Min/Max for Any Comparable Type

Ever found yourself trying to find the maximum System.DateTime value? Or System.Version?

MathEx provides Min/Max operations for any comparable type:

using Gapotchenko.FX.Math;

var currentProgress = new DateTime(2012, 1, 1);
var desiredProgress = new DateTime(2019, 1, 1);

var fxProgress = MathEx.Max(currentProgress, desiredProgress);
Console.WriteLine(fxProgress);

Commonly Used Types

  • Gapotchenko.FX.Math.MathEx

Other Modules

Let's continue with a look at some other modules provided by Gapotchenko.FX:

Or look at the full list of modules.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 is compatible.  netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 is compatible.  net472 is compatible.  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 (4)

Showing the top 4 NuGet packages that depend on Gapotchenko.FX.Math:

Package Downloads
Gapotchenko.FX.Profiles.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Represents the Core profile of Gapotchenko.FX.

Gapotchenko.FX.Math.Geometry The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The module provides primitives and operations for geometry math.

Gapotchenko.FX.Math.Combinatorics The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The module provides the math operations for combinatorics.

Gapotchenko.FX.Math.Topology The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The module provides data structures and primitives for working with abstract topologies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2022.2.7 1,968 5/1/2022
2022.2.5 1,847 5/1/2022
2022.1.4 1,877 4/6/2022
2021.2.21 1,943 1/21/2022
2021.2.20 1,847 1/17/2022
2021.1.5 1,310 7/6/2021
2020.2.2-beta 939 11/21/2020
2020.1.15 1,140 11/5/2020
2020.1.9-beta 891 7/14/2020
2020.1.8-beta 873 7/14/2020
2020.1.7-beta 908 7/14/2020
2020.1.1-beta 968 2/11/2020
2019.3.7 1,201 11/4/2019
2019.2.20 1,164 8/13/2019
2019.1.151 1,294 3/30/2019