Registry / other / reaction

reaction

JSON →
library1.0.0vcpkgunverified

A lightweight, header-only, high-performance reactive programming framework for C++20.

vcpkg install reaction
INSTALL
IMPORT
SIG · REACTION
R
reaction
othercppv1.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

reaction/reaction.h
#include <reaction/reaction.h>

Minimal reactive pipeline: source, map, subscribe.

#include <reaction/reaction.h> #include <iostream> int main() { auto source = reaction::make_source<int>(); auto subscriber = source | reaction::map([](int x) { return x * 2; }) | reaction::subscribe([](int v) { std::cout << v << "\n"; }); source.emit(5); // prints 10 return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Amazon
1
Resources

No resource links recorded.

reaction — pip install reaction · libregistry