MemoizR.Reactive 0.0.4-beta1

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

// Install MemoizR.Reactive as a Cake Tool
#tool nuget:?package=MemoizR.Reactive&version=0.0.4-beta1&prerelease                

This package builds on the functionality of the base package MemoizR

This behaves mostly the same as signals in solid.js (with added thread-safety). The implementation is based on https://github.com/modderme123/reactively

  /*
     Initialize Graph without evaluation
        v1
        | \ 
       m1  m2
         \ |
          r1
  */
var f = new MemoFactory();
var v1 = f.CreateSignal(1, "v1");
var m1 = f.CreateMemoizR(() => v1.Get(), "m1");
var m2 = f.CreateMemoizR(() => v1.Get() * 2, "m2");
var r1 = f.CreateReaction(() => m1.Get() + m2.Get(), "r1");
var r2 = f.CreateReaction(() => v1.Get() + 1, "r2");

Every time a change is made to the signal it runs the reactions that depend on it.

Product Compatible and additional computed target framework versions.
.NET 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.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.6 90 11/27/2024
0.1.5 95 11/17/2024
0.1.4 109 5/25/2024
0.1.3 123 5/7/2024
0.1.2 109 5/6/2024
0.1.1 93 5/1/2024
0.1.1-rc.11 71 4/29/2024
0.1.1-rc.10 75 4/23/2024
0.1.1-rc.9 63 4/18/2024
0.1.1-rc.8 73 4/13/2024
0.1.1-rc.7 67 4/11/2024
0.1.1-rc.6 62 4/10/2024
0.1.1-rc.5 63 4/4/2024
0.1.1-rc.4 66 4/1/2024
0.1.1-rc.3 68 3/24/2024
0.1.1-rc.2 74 2/17/2024
0.1.1-rc.1 119 1/4/2024
0.1.0-rc9 176 11/6/2023
0.1.0-rc8 146 10/26/2023
0.1.0-rc7 114 10/24/2023
0.1.0-rc6 126 10/21/2023
0.1.0-rc5 103 10/19/2023
0.1.0-rc4 121 10/14/2023
0.1.0-rc3 120 10/13/2023
0.1.0-rc2 123 10/11/2023
0.1.0-rc10 109 11/12/2023
0.1.0-rc1 117 10/10/2023
0.1.0-rc.11 77 1/4/2024
0.1.0-alpha2 139 10/6/2023
0.1.0-alpha1 125 10/6/2023
0.0.4-rc4 130 9/24/2023
0.0.4-rc3 121 9/23/2023
0.0.4-rc2 119 9/23/2023
0.0.4-rc1 113 9/22/2023
0.0.4-beta1 119 9/21/2023
0.0.4-alpha1 117 9/19/2023