magic.lambda.math 14.5.7

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

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

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. 
.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 441 1/22/2024
17.1.7 190 1/12/2024
17.1.6 161 1/11/2024
17.1.5 185 1/5/2024
17.0.1 223 1/1/2024
17.0.0 354 12/14/2023
16.11.5 357 11/12/2023
16.9.0 341 10/9/2023
16.7.0 543 7/11/2023
16.4.1 429 7/2/2023
16.4.0 431 6/22/2023
16.3.1 361 6/7/2023
16.3.0 370 5/28/2023
16.1.9 668 4/30/2023
15.10.11 507 4/13/2023
15.9.1 615 3/27/2023
15.9.0 478 3/24/2023
15.8.2 521 3/20/2023
15.7.0 413 3/6/2023
15.5.0 1,590 1/28/2023
15.2.0 714 1/18/2023
15.1.0 1,185 12/28/2022
14.5.7 716 12/13/2022
14.5.5 830 12/6/2022
14.5.1 669 11/23/2022
14.5.0 624 11/18/2022
14.4.5 733 10/22/2022
14.4.1 797 10/22/2022
14.4.0 653 10/17/2022
14.3.1 1,284 9/12/2022
14.3.0 659 9/10/2022
14.1.3 964 8/7/2022
14.1.2 677 8/7/2022
14.1.1 694 8/7/2022
14.0.14 752 7/26/2022
14.0.12 676 7/24/2022
14.0.11 695 7/23/2022
14.0.10 671 7/23/2022
14.0.9 668 7/23/2022
14.0.8 726 7/17/2022
14.0.5 806 7/11/2022
14.0.4 785 7/6/2022
14.0.3 713 7/2/2022
14.0.2 712 7/2/2022
14.0.0 887 6/25/2022
13.4.0 2,094 5/31/2022
13.3.4 1,471 5/9/2022
13.3.0 972 5/1/2022
13.2.0 1,218 4/21/2022
13.1.0 1,038 4/7/2022
13.0.0 776 4/5/2022
11.0.5 1,436 3/2/2022
11.0.4 795 2/22/2022
11.0.3 793 2/9/2022
11.0.2 822 2/6/2022
11.0.1 786 2/5/2022
10.0.21 789 1/28/2022
10.0.20 773 1/27/2022
10.0.19 765 1/23/2022
10.0.18 734 1/17/2022
10.0.15 967 12/31/2021
10.0.14 582 12/28/2021
10.0.7 1,462 12/22/2021
10.0.5 778 12/18/2021
9.9.9 1,678 11/29/2021
9.9.3 913 11/9/2021
9.9.2 661 11/4/2021
9.9.0 773 10/30/2021
9.8.9 716 10/29/2021
9.8.7 682 10/27/2021
9.8.6 674 10/27/2021
9.8.5 725 10/26/2021
9.8.0 1,382 10/20/2021
9.7.9 651 10/19/2021
9.7.8 646 10/19/2021
9.7.5 1,259 10/14/2021
9.7.0 837 10/9/2021
9.6.6 1,236 8/14/2021
9.2.0 6,283 5/26/2021
9.1.4 1,293 4/21/2021
9.1.0 1,054 4/14/2021
9.0.0 883 4/5/2021
8.9.9 1,024 3/30/2021
8.9.3 1,565 3/19/2021
8.9.2 1,011 1/29/2021
8.9.1 1,017 1/24/2021
8.9.0 1,132 1/22/2021
8.6.9 3,030 11/8/2020
8.6.6 1,962 11/2/2020
8.6.0 4,018 10/28/2020
8.5.0 1,930 10/23/2020
8.4.0 5,565 10/13/2020
8.3.1 2,661 10/5/2020
8.3.0 1,232 10/3/2020
8.2.2 2,024 9/26/2020
8.2.1 1,348 9/25/2020
8.2.0 1,371 9/25/2020
8.1.19 3,228 9/21/2020
8.1.18 1,289 9/15/2020
8.1.17 3,413 9/13/2020
8.1.16 623 9/13/2020
8.1.15 1,922 9/12/2020
8.1.11 2,513 9/11/2020
8.1.10 1,361 9/6/2020
8.1.9 1,330 9/3/2020
8.1.8 1,351 9/2/2020
8.1.7 1,196 8/28/2020
8.1.4 1,211 8/25/2020
8.1.3 1,325 8/18/2020
8.1.2 1,250 8/16/2020
8.1.1 1,304 8/15/2020
8.1.0 606 8/15/2020
8.0.1 2,694 8/7/2020
8.0.0 1,217 8/7/2020
7.0.1 1,365 6/28/2020
7.0.0 1,262 6/28/2020
5.0.0 7,435 2/25/2020
4.0.4 7,873 1/27/2020
4.0.3 1,262 1/27/2020
4.0.2 1,437 1/16/2020
4.0.1 1,411 1/11/2020
4.0.0 1,358 1/5/2020
3.1.0 6,297 11/10/2019
3.0.0 3,887 10/23/2019
2.0.1 8,270 10/15/2019
2.0.0 1,603 10/13/2019
1.1.8 1,386 10/11/2019
1.1.7 1,312 10/10/2019
1.1.6 603 10/9/2019
1.1.5 598 10/6/2019
1.1.4 600 10/6/2019
1.1.3 595 10/5/2019
1.1.2 620 10/5/2019
1.0.0 658 9/26/2019