Gapotchenko.FX.Math
2024.1.3
Prefix Reserved
dotnet add package Gapotchenko.FX.Math --version 2024.1.3
NuGet\Install-Package Gapotchenko.FX.Math -Version 2024.1.3
<PackageReference Include="Gapotchenko.FX.Math" Version="2024.1.3" />
paket add Gapotchenko.FX.Math --version 2024.1.3
#r "nuget: Gapotchenko.FX.Math, 2024.1.3"
// Install Gapotchenko.FX.Math as a Cake Addin #addin nuget:?package=Gapotchenko.FX.Math&version=2024.1.3 // Install Gapotchenko.FX.Math as a Cake Tool #tool nuget:?package=Gapotchenko.FX.Math&version=2024.1.3
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.
Some functions provided by MathEx
class are described below.
Swap
The swap operation is a widely demanded primitive:
Swap<T>(ref T val1, ref T val2)
Despite a trivial implementation, swap operation was found highly desirable 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);
The expression above gives an immediate improvement in readability.
Note that some .NET languages have a built-in support for swap operation.
For example, a modern C# code can swap val1
and val2
values using tuples, which is a highly recommended approach:
(val1, val2) = (val2, val1);
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(2025, 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:
- Gapotchenko.FX
- Gapotchenko.FX.AppModel.Information
- Gapotchenko.FX.Collections
- Gapotchenko.FX.Console
- Gapotchenko.FX.Data
- Gapotchenko.FX.Diagnostics
- Gapotchenko.FX.IO
- Gapotchenko.FX.Linq
- ➴ Gapotchenko.FX.Math
- Gapotchenko.FX.Memory
- Gapotchenko.FX.Security.Cryptography
- Gapotchenko.FX.Text
- Gapotchenko.FX.Threading
- Gapotchenko.FX.Tuples
Or look at the full list of modules.
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 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. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. 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 | net461 is compatible. 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.1
- Gapotchenko.FX (>= 2024.1.3)
-
.NETCoreApp 3.0
- Gapotchenko.FX (>= 2024.1.3)
-
.NETFramework 4.6.1
- Gapotchenko.FX (>= 2024.1.3)
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.7.1
- Gapotchenko.FX (>= 2024.1.3)
-
.NETFramework 4.7.2
- Gapotchenko.FX (>= 2024.1.3)
-
.NETStandard 2.0
- Gapotchenko.FX (>= 2024.1.3)
-
.NETStandard 2.1
- Gapotchenko.FX (>= 2024.1.3)
-
net5.0
- Gapotchenko.FX (>= 2024.1.3)
-
net6.0
- Gapotchenko.FX (>= 2024.1.3)
-
net7.0
- Gapotchenko.FX (>= 2024.1.3)
-
net8.0
- Gapotchenko.FX (>= 2024.1.3)
-
net9.0
- Gapotchenko.FX (>= 2024.1.3)
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 |