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
.NET 5.0 .NET Core 2.0 .NET Standard 2.0 .NET Framework 4.6
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 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 net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
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.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.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.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,008 5/1/2022
2022.2.5 981 5/1/2022
2022.1.4 958 4/6/2022
2021.2.21 1,004 1/21/2022
2021.2.20 999 1/17/2022
2021.1.5 587 7/6/2021
2020.2.2-beta 354 11/21/2020
2020.1.15 488 11/5/2020
2020.1.9-beta 282 7/14/2020
2020.1.8-beta 308 7/14/2020
2020.1.7-beta 311 7/14/2020
2020.1.1-beta 448 2/11/2020
2019.3.7 547 11/4/2019
2019.2.20 545 8/13/2019
2019.1.151 620 3/30/2019