Gapotchenko.FX.Math
2022.1.4
Prefix Reserved
See the version list below for details.
dotnet add package Gapotchenko.FX.Math --version 2022.1.4
NuGet\Install-Package Gapotchenko.FX.Math -Version 2022.1.4
<PackageReference Include="Gapotchenko.FX.Math" Version="2022.1.4" />
paket add Gapotchenko.FX.Math --version 2022.1.4
#r "nuget: Gapotchenko.FX.Math, 2022.1.4"
// Install Gapotchenko.FX.Math as a Cake Addin #addin nuget:?package=Gapotchenko.FX.Math&version=2022.1.4 // Install Gapotchenko.FX.Math as a Cake Tool #tool nuget:?package=Gapotchenko.FX.Math&version=2022.1.4
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);
Product | Versions 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. |
-
.NETCoreApp 2.0
- Gapotchenko.FX (>= 2022.1.4)
-
.NETCoreApp 2.1
- Gapotchenko.FX (>= 2022.1.4)
-
.NETCoreApp 3.0
- Gapotchenko.FX (>= 2022.1.4)
-
.NETFramework 4.6
- Gapotchenko.FX (>= 2022.1.4)
-
.NETFramework 4.7.1
- Gapotchenko.FX (>= 2022.1.4)
-
.NETFramework 4.7.2
- Gapotchenko.FX (>= 2022.1.4)
-
.NETStandard 2.0
- Gapotchenko.FX (>= 2022.1.4)
-
.NETStandard 2.1
- Gapotchenko.FX (>= 2022.1.4)
-
net5.0
- Gapotchenko.FX (>= 2022.1.4)
-
net6.0
- Gapotchenko.FX (>= 2022.1.4)
-
net7.0
- Gapotchenko.FX (>= 2022.1.4)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on Gapotchenko.FX.Math:
Package | Downloads |
---|---|
Gapotchenko.FX.Profiles.Core
Represents the Core profile of Gapotchenko.FX. |
|
Gapotchenko.FX.Math.Geometry
The module provides primitives and operations for geometry math. |
|
Gapotchenko.FX.Math.Combinatorics
Provides math operations for combinatorics. |
|
Gapotchenko.FX.Math.Topology
The module provides data structures and primitives for working with abstract topologies. |
|
Gapotchenko.FX.Math.Intervals
Provides data structures and primitives for working with intervals. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2024.1.3 | 233 | 11/10/2024 |
2022.2.7 | 2,178 | 5/1/2022 |
2022.2.5 | 1,967 | 5/1/2022 |
2022.1.4 | 2,002 | 4/6/2022 |
2021.2.21 | 2,075 | 1/21/2022 |
2021.2.20 | 1,954 | 1/17/2022 |
2021.1.5 | 1,431 | 7/6/2021 |
2020.2.2-beta | 1,048 | 11/21/2020 |
2020.1.15 | 1,230 | 11/5/2020 |
2020.1.9-beta | 974 | 7/14/2020 |
2020.1.8-beta | 941 | 7/14/2020 |
2020.1.7-beta | 998 | 7/14/2020 |
2020.1.1-beta | 1,052 | 2/11/2020 |
2019.3.7 | 1,288 | 11/4/2019 |
2019.2.20 | 1,269 | 8/13/2019 |
2019.1.151 | 1,377 | 3/30/2019 |