magic.lambda.math 13.3.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package magic.lambda.math --version 13.3.4                
NuGet\Install-Package magic.lambda.math -Version 13.3.4                
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="magic.lambda.math" Version="13.3.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add magic.lambda.math --version 13.3.4                
#r "nuget: magic.lambda.math, 13.3.4"                
#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 magic.lambda.math as a Cake Addin
#addin nuget:?package=magic.lambda.math&version=13.3.4

// Install magic.lambda.math as a Cake Tool
#tool nuget:?package=magic.lambda.math&version=13.3.4                

Math slots in Hyperlambda

This project provides math functions to Magic. More specifically, it provides the following slots.

  • [math.multiply] - Multiplication
  • [math.divide] - Division
  • [math.add] - Addition
  • [math.subtract] - Subtraction
  • [math.modulo] - Modulo
  • [math.decrement] - Decrements a node's value, optionally by [step], defaulting to 1
  • [math.increment] - Increments a node's value, optionally by [step], defaulting to 1

All of the above besides the two last slots can be given any number of arguments, including as its value, and will treat the first argument as the "base", and performing the rest of the arguments self assigning the base as it proceeds. For instance, the following code will first divide 100 by 4, then divide that result by 5 again, resulting in 5.

math.divide:int:100
   :int:4
   :int:5

The value of the above [math.divide] node after evaluating the above Hyperlambda will be 5. All of the above slots will also evaluate the children collection as a lambda, before starting the actual math function, allowing you to recursively raise signals to retrieve values that are supposed to be mathematically handled somehow. This allows you to recursively nest math operations, such as for instance.

.one:int:5
.two:int:2

math.multiply
   .:int:3
   math.add
      get-value:x:@.one
      get-value:x:@.two

The above of course will first add 5 and 2, then multiple the result of that with 3, resulting in 21.

Incrementing and decrementing values

The above [math.increment] and [math.decrement] slots, will instead of yielding a result, inline modify the value of the node(s) it is pointing to, assuming its value is an expression. In addition these two slots can take an optional "step" argument, allowing you to declare how much the incrementation/decrementation process should add/reduce the original node's value by. Below is an example that decrements the value found in its expression by 2.

.value:int:5

math.decrement:x:-
   .:int:2

After executing the above, the result of [.value] will be 3. The default "step" value if ommitted will be 1. Below is an example.

.value:int:5

math.increment:x:-

Notice - You can use any slot invocation to retrieve the step value for the increment/decrement slots, including for instance an invocation to [get-value], or your custom slots. This is dues to that the first argument supplied to these slots will be assumed to be the "step" value you want.

Modulo

The modulo slot divides its argument(s) by its base, and returns the remainder.

.int:17

math.modulo:x:-
   .:int:10

The above results in 7.

Project website

The source code for this repository can be found at github.com/polterguy/magic.lambda.math, and you can provide feedback, provide bug reports, etc at the same place.

Quality gates

  • Build status
  • Quality Gate Status
  • Bugs
  • Code Smells
  • Coverage
  • Duplicated Lines (%)
  • Lines of Code
  • Maintainability Rating
  • Reliability Rating
  • Security Rating
  • Technical Debt
  • Vulnerabilities
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  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 (1)

Showing the top 1 NuGet packages that depend on magic.lambda.math:

Package Downloads
magic.library

Helper project for Magic to wire up everything easily by simply adding one package, and invoking two simple methods. When using Magic, this is (probably) the only package you should actually add, since this package pulls in everything else you'll need automatically, and wires up everything sanely by default. To use package go to https://polterguy.github.io

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
17.2.0 474 1/22/2024
17.1.7 206 1/12/2024
17.1.6 169 1/11/2024
17.1.5 195 1/5/2024
17.0.1 233 1/1/2024
17.0.0 363 12/14/2023
16.11.5 370 11/12/2023
16.9.0 352 10/9/2023
16.7.0 552 7/11/2023
16.4.1 439 7/2/2023
16.4.0 440 6/22/2023
16.3.1 376 6/7/2023
16.3.0 383 5/28/2023
16.1.9 683 4/30/2023
15.10.11 526 4/13/2023
15.9.1 630 3/27/2023
15.9.0 495 3/24/2023
15.8.2 536 3/20/2023
15.7.0 427 3/6/2023
15.5.0 1,605 1/28/2023
15.2.0 728 1/18/2023
15.1.0 1,203 12/28/2022
14.5.7 732 12/13/2022
14.5.5 849 12/6/2022
14.5.1 686 11/23/2022
14.5.0 643 11/18/2022
14.4.5 750 10/22/2022
14.4.1 814 10/22/2022
14.4.0 672 10/17/2022
14.3.1 1,302 9/12/2022
14.3.0 677 9/10/2022
14.1.3 985 8/7/2022
14.1.2 695 8/7/2022
14.1.1 713 8/7/2022
14.0.14 770 7/26/2022
14.0.12 694 7/24/2022
14.0.11 719 7/23/2022
14.0.10 691 7/23/2022
14.0.9 688 7/23/2022
14.0.8 746 7/17/2022
14.0.5 824 7/11/2022
14.0.4 803 7/6/2022
14.0.3 732 7/2/2022
14.0.2 730 7/2/2022
14.0.0 907 6/25/2022
13.4.0 2,114 5/31/2022
13.3.4 1,497 5/9/2022
13.3.0 996 5/1/2022
13.2.0 1,239 4/21/2022
13.1.0 1,058 4/7/2022
13.0.0 800 4/5/2022
11.0.5 1,462 3/2/2022
11.0.4 823 2/22/2022
11.0.3 820 2/9/2022
11.0.2 846 2/6/2022
11.0.1 810 2/5/2022
10.0.21 812 1/28/2022
10.0.20 796 1/27/2022
10.0.19 789 1/23/2022
10.0.18 756 1/17/2022
10.0.15 994 12/31/2021
10.0.14 606 12/28/2021
10.0.7 1,486 12/22/2021
10.0.5 802 12/18/2021
9.9.9 1,707 11/29/2021
9.9.3 938 11/9/2021
9.9.2 687 11/4/2021
9.9.0 798 10/30/2021
9.8.9 741 10/29/2021
9.8.7 706 10/27/2021
9.8.6 699 10/27/2021
9.8.5 749 10/26/2021
9.8.0 1,406 10/20/2021
9.7.9 678 10/19/2021
9.7.8 671 10/19/2021
9.7.5 1,284 10/14/2021
9.7.0 864 10/9/2021
9.6.6 1,261 8/14/2021
9.2.0 6,307 5/26/2021
9.1.4 1,317 4/21/2021
9.1.0 1,079 4/14/2021
9.0.0 911 4/5/2021
8.9.9 1,048 3/30/2021
8.9.3 1,591 3/19/2021
8.9.2 1,036 1/29/2021
8.9.1 1,042 1/24/2021
8.9.0 1,157 1/22/2021
8.6.9 3,058 11/8/2020
8.6.6 1,987 11/2/2020
8.6.0 4,044 10/28/2020
8.5.0 1,957 10/23/2020
8.4.0 5,591 10/13/2020
8.3.1 2,686 10/5/2020
8.3.0 1,258 10/3/2020
8.2.2 2,049 9/26/2020
8.2.1 1,372 9/25/2020
8.2.0 1,400 9/25/2020
8.1.19 3,255 9/21/2020
8.1.18 1,314 9/15/2020
8.1.17 3,438 9/13/2020
8.1.16 648 9/13/2020
8.1.15 1,952 9/12/2020
8.1.11 2,540 9/11/2020
8.1.10 1,385 9/6/2020
8.1.9 1,355 9/3/2020
8.1.8 1,377 9/2/2020
8.1.7 1,220 8/28/2020
8.1.4 1,237 8/25/2020
8.1.3 1,351 8/18/2020
8.1.2 1,275 8/16/2020
8.1.1 1,328 8/15/2020
8.1.0 630 8/15/2020
8.0.1 2,719 8/7/2020
8.0.0 1,241 8/7/2020
7.0.1 1,392 6/28/2020
7.0.0 1,287 6/28/2020
5.0.0 7,463 2/25/2020
4.0.4 7,900 1/27/2020
4.0.3 1,290 1/27/2020
4.0.2 1,467 1/16/2020
4.0.1 1,438 1/11/2020
4.0.0 1,388 1/5/2020
3.1.0 6,325 11/10/2019
3.0.0 3,917 10/23/2019
2.0.1 8,299 10/15/2019
2.0.0 1,632 10/13/2019
1.1.8 1,415 10/11/2019
1.1.7 1,341 10/10/2019
1.1.6 633 10/9/2019
1.1.5 627 10/6/2019
1.1.4 628 10/6/2019
1.1.3 624 10/5/2019
1.1.2 649 10/5/2019
1.0.0 688 9/26/2019