magic.lambda.slots
16.3.1
See the version list below for details.
dotnet add package magic.lambda.slots --version 16.3.1
NuGet\Install-Package magic.lambda.slots -Version 16.3.1
<PackageReference Include="magic.lambda.slots" Version="16.3.1" />
paket add magic.lambda.slots --version 16.3.1
#r "nuget: magic.lambda.slots, 16.3.1"
// Install magic.lambda.slots as a Cake Addin #addin nuget:?package=magic.lambda.slots&version=16.3.1 // Install magic.lambda.slots as a Cake Tool #tool nuget:?package=magic.lambda.slots&version=16.3.1
magic.lambda.slots - Creating and administering dynamic Hyperlambda slots
The magic.lambda.slots project provides the ability to create, invoke (signal), modify, inspect, and delete dynamic slots in Hyperlambda. More specifically, this project provides the following slots.
- [signal] - Invokes a dynamically create slot that has been created with the [slots.create] slot
- [try-signal] - Invokes a dynamically create slot that has been created with the [slots.create] slot, but will not throw exceptions if the slot doesn't exist
- [slots.create] - Creates a dynamic slot, that can be invoked with the [signal] slot
- [slots.get] - Returns the entire lambda object for a slot that has been previously created with the [slots.create] slot
- [slots.delete] - Deletes a slot that has been previously created with the [slots.create] slot
- [slots.exists] - Returns true of the given slot exists
- [return-nodes] - Returns a bunch of nodes to caller from inside of your slot
- [return-value] - Returns a single value to caller from inside of your slot
- [return] - Returns either a list of nodes, or a single value, or both, depending upon the results of its expression, or whether or not it has a static value, or a list of nodes
- [slots.vocabulary] - Returns the names of all dynamically created slots
/*
* First we create a dynamic slot.
*/
slots.create:foo
return-value:int:57
/*
* Then we invoke it.
*/
signal:foo
After evaluation of the above Hyperlambda, the value of the [signal] node will be 57. Notice, if you invoke [slots.create] for a slot that has already been created, the old slot will be overwritten with the new lambda object you pass into it. Also notice that if you try to invoke a slot that doesn't exist, or you try to get its content, an exception will be thrown.
Also realize that when you create a slot, it is not persisted in any ways - Implying if the web server process is restarted, your slot will disappear. To avoid this, put the creation of your slot inside a file in a folder called "magic.startup" in your module's folder, e.g. "/files/modules/foo-module/magic.startup/create-slot.hl". All files inside of modules that exists within a "magic.startup" folder will be executed every time your web server restarts for some reasons.
How to use [slots.create]
Creates a dynamic slot that can be invoked using [signal]. Below is an example.
slots.create:foo
return-value:int:57
Notice, the above slot aren't persisted in any ways, implying if your web server restarts its process, your slot is removed. If you want to make sure your slots becomes a permanent part of your application, you need to make sure you are somehow creating it during server startup, which can normally be done on a per module basis, by putting a Hyperlambda file into your module's "magic.startup" folder, which makes sure the code is executed during startup of your web app.
How to use [signal]
Invokes a previously created dynamic slot. Assuming you have created the foo slot from the create slot example, you can invoke the slot using the following Hyperlambda.
signal:foo
After evaluating the above Hyperlambda, the [signal] node will end up having a value of "57".
Notice - This slot obeys by the rules of [whitelist] invocations from magic.lambda, allowing you to declare a list of dynamic slots, which are exclusively allowed to be invoked temporarily inside of an invocation to whitelist, allowing you to restrict some piece of potentially unsafe code to only signal a pre-defined list of dynamically created slots. Below is an example.
slots.create:foo1
return-value:Safe
slots.create:foo2
return-value:Unsafe
whitelist
vocabulary
signal
signal:foo1
.lambda
// Assuming you have a [foo1] slot created, this will work
signal:foo1
// This will throw, since [foo2] is not whitelisted
signal:foo2
Basically, only the slots declared in the above [vocabulary] will be allowed to be invoked inside of the above [.lambda] object. You must have your dynamic slots declared as signal:slot-name, such as the above illustrates. And in order to signal dynamic slots at all, you'll need to (obviously) whitelist [signal] itself, as illustrated in the above code. Read more about [whitelist] in the magic.lambda project. Inside your slots though any [whitelist] invocations will simply be ignored, allowing you to whitelist a single dynamic slot, for then to ignore what the slot itself is doing internally. This might create security issues for you if you have dynamically created slots that for some reasons execute lambda object supplied to them. Hence as a general rule of thumb, you should avoid whitelisting slots that executes lambda objects supplied to them.
How to use [try-signal]
Invokes a previously created dynamic slot. This slots works exactly the same as [signal] except it does not throw an exception if the slot does not exist. Assuming you have created the foo slot from the create slot example, you can invoke the slot using the following Hyperlambda.
try-signal:foo
How to use [slots.get]
Returns the entire lambda code for a previously created dynamic slot. Example can be found below.
slots.create:foo
return-value:int:57
slots.get:foo
How to use [slots.delete]
Deletes a previously created dynamic slot. The following example will throw an exception.
slots.create:foo
return-value:int:57
slots.delete:foo
// Throws exception, since [foo] no longer exists.
slots.get:foo
How to use [return-nodes]
Returns a bunch of nodes (lambda) from your slot. Can only be invoked from the inside of a dynamically created slot, and other slots explicitly creating a return context. An example can be found below.
slots.create:foo
return-nodes
integer-value:int:57
string-value:Foo bar
signal:foo
How to use [return-value]
Returns a single value from your slot. Can only be invoked from the inside of a dynamically created slot, and other slots explicitly creating a return context. An example can be found below.
slots.create:foo
return-value:This becomes the returned value from your slot
signal:foo
How to use [slots.exists]
Returns true if the specified slot exists. Example can be found below.
slots.create:foo
return-value:Blah, blah, blah ...
slots.exists:foo
slots.exists:DOES-NOT-EXISTS
How to use [slots.vocabulary]
Returns the names of all dynamically created slots to caller. Example can be found below.
slots.vocabulary
Project website for magic.lambda.slots
The source code for this repository can be found at github.com/polterguy/magic.lambda.slots, and you can provide feedback, provide bug reports, etc at the same place.
Copyright and maintenance
The projects is copyright of Aista, Ltd 2021 - 2023, and professionally maintained by AINIRO your friendly ChatGPT website chatbot vendor.
Product | Versions 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. |
-
.NETStandard 2.0
- magic.lambda.caching (>= 16.3.1)
- magic.node.extensions (>= 16.3.1)
- magic.signals.contracts (>= 16.3.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on magic.lambda.slots:
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.1 | 415 | 1/22/2024 |
17.2.0 | 129 | 1/22/2024 |
17.1.7 | 192 | 1/12/2024 |
17.1.6 | 153 | 1/11/2024 |
17.1.5 | 172 | 1/5/2024 |
17.0.1 | 218 | 1/1/2024 |
17.0.0 | 362 | 12/14/2023 |
16.11.5 | 370 | 11/12/2023 |
16.9.0 | 370 | 10/9/2023 |
16.7.0 | 605 | 7/11/2023 |
16.4.1 | 411 | 7/2/2023 |
16.4.0 | 399 | 6/22/2023 |
16.3.1 | 368 | 6/7/2023 |
16.3.0 | 350 | 5/28/2023 |
16.1.9 | 680 | 4/30/2023 |
15.10.11 | 504 | 4/13/2023 |
15.9.1 | 615 | 3/27/2023 |
15.9.0 | 496 | 3/24/2023 |
15.8.2 | 567 | 3/20/2023 |
15.7.0 | 428 | 3/6/2023 |
15.5.0 | 1,658 | 1/28/2023 |
15.2.0 | 742 | 1/18/2023 |
15.1.0 | 1,186 | 12/28/2022 |
14.5.7 | 753 | 12/13/2022 |
14.5.5 | 836 | 12/6/2022 |
14.5.1 | 696 | 11/23/2022 |
14.5.0 | 637 | 11/18/2022 |
14.4.5 | 736 | 10/22/2022 |
14.4.1 | 761 | 10/22/2022 |
14.4.0 | 673 | 10/17/2022 |
14.3.1 | 1,279 | 9/12/2022 |
14.3.0 | 667 | 9/10/2022 |
14.1.3 | 950 | 8/7/2022 |
14.1.2 | 672 | 8/7/2022 |
14.1.1 | 702 | 8/7/2022 |
14.0.14 | 726 | 7/26/2022 |
14.0.12 | 703 | 7/24/2022 |
14.0.11 | 645 | 7/23/2022 |
14.0.10 | 661 | 7/23/2022 |
14.0.9 | 700 | 7/23/2022 |
14.0.8 | 749 | 7/17/2022 |
14.0.5 | 808 | 7/11/2022 |
14.0.4 | 813 | 7/6/2022 |
14.0.3 | 745 | 7/2/2022 |
14.0.2 | 671 | 7/2/2022 |
14.0.1 | 711 | 7/2/2022 |
14.0.0 | 689 | 6/25/2022 |
13.4.0 | 2,070 | 5/31/2022 |
13.3.4 | 1,454 | 5/9/2022 |
13.3.0 | 945 | 5/1/2022 |
13.2.0 | 1,168 | 4/21/2022 |
13.1.0 | 1,046 | 4/7/2022 |
13.0.0 | 742 | 4/5/2022 |
11.0.7 | 1,150 | 3/10/2022 |
11.0.5 | 837 | 3/2/2022 |
11.0.4 | 768 | 2/22/2022 |
11.0.3 | 814 | 2/9/2022 |
11.0.2 | 789 | 2/6/2022 |
11.0.1 | 804 | 2/5/2022 |
10.0.21 | 780 | 1/28/2022 |
10.0.20 | 756 | 1/27/2022 |
10.0.19 | 775 | 1/23/2022 |
10.0.18 | 741 | 1/17/2022 |
10.0.15 | 1,003 | 12/31/2021 |
10.0.14 | 615 | 12/28/2021 |
10.0.8 | 1,258 | 12/22/2021 |
10.0.7 | 616 | 12/22/2021 |
10.0.5 | 762 | 12/18/2021 |
9.9.9 | 1,677 | 11/29/2021 |
9.9.3 | 948 | 11/9/2021 |
9.9.2 | 643 | 11/4/2021 |
9.9.0 | 821 | 10/30/2021 |
9.8.9 | 718 | 10/29/2021 |
9.8.7 | 666 | 10/27/2021 |
9.8.6 | 664 | 10/27/2021 |
9.8.5 | 684 | 10/26/2021 |
9.8.0 | 1,384 | 10/20/2021 |
9.7.9 | 620 | 10/19/2021 |
9.7.5 | 1,514 | 10/14/2021 |
9.7.0 | 857 | 10/9/2021 |
9.6.6 | 1,260 | 8/14/2021 |
9.2.0 | 6,316 | 5/26/2021 |
9.1.4 | 1,319 | 4/21/2021 |
9.1.0 | 1,044 | 4/14/2021 |
9.0.0 | 927 | 4/5/2021 |
8.9.9 | 1,047 | 3/30/2021 |
8.9.3 | 1,581 | 3/19/2021 |
8.9.2 | 1,079 | 1/29/2021 |
8.9.1 | 1,027 | 1/24/2021 |
8.9.0 | 1,133 | 1/22/2021 |
8.6.9 | 3,109 | 11/8/2020 |
8.6.6 | 2,004 | 11/2/2020 |
8.6.0 | 4,052 | 10/28/2020 |
8.5.0 | 1,925 | 10/23/2020 |
8.4.2 | 3,520 | 10/16/2020 |
8.4.1 | 1,237 | 10/16/2020 |
8.4.0 | 2,033 | 10/13/2020 |
8.3.1 | 2,694 | 10/5/2020 |
8.3.0 | 1,281 | 10/3/2020 |
8.2.2 | 2,053 | 9/26/2020 |
8.2.1 | 1,350 | 9/25/2020 |
8.2.0 | 1,409 | 9/25/2020 |
8.1.17 | 6,843 | 9/13/2020 |
8.1.16 | 568 | 9/13/2020 |
8.1.15 | 1,261 | 9/12/2020 |
8.1.11 | 3,211 | 9/11/2020 |
8.1.10 | 698 | 9/6/2020 |
8.1.9 | 2,018 | 9/3/2020 |
8.1.8 | 1,325 | 9/2/2020 |
8.1.7 | 1,236 | 8/28/2020 |
8.1.4 | 1,227 | 8/25/2020 |
8.1.3 | 1,320 | 8/18/2020 |
8.1.2 | 1,226 | 8/16/2020 |
8.1.1 | 1,275 | 8/15/2020 |
8.1.0 | 595 | 8/15/2020 |
8.0.1 | 2,758 | 8/7/2020 |
8.0.0 | 1,257 | 8/7/2020 |
7.0.1 | 1,325 | 6/28/2020 |
7.0.0 | 1,352 | 6/28/2020 |
5.0.1 | 2,130 | 5/30/2020 |
5.0.0 | 6,122 | 2/25/2020 |
4.0.4 | 7,997 | 1/27/2020 |
4.0.3 | 1,235 | 1/27/2020 |
4.0.2 | 1,373 | 1/16/2020 |
4.0.1 | 1,410 | 1/11/2020 |
4.0.0 | 1,385 | 1/5/2020 |
3.1.1 | 4,245 | 12/4/2019 |
3.1.0 | 2,821 | 11/10/2019 |
3.0.0 | 3,917 | 10/23/2019 |
2.0.3 | 4,447 | 10/18/2019 |
2.0.2 | 1,849 | 10/18/2019 |
2.0.1 | 3,435 | 10/15/2019 |
2.0.0 | 1,663 | 10/13/2019 |
1.1.9 | 1,400 | 10/11/2019 |
1.1.8 | 1,332 | 10/10/2019 |
1.1.7 | 628 | 10/9/2019 |
1.1.6 | 619 | 10/7/2019 |
1.1.5 | 626 | 10/6/2019 |
1.1.4 | 581 | 10/6/2019 |
1.1.2 | 614 | 10/5/2019 |