https://github.com/cwithmichael/exercism-rust-cell
Solution to the React problem on Exercism for Rust's track
https://github.com/cwithmichael/exercism-rust-cell
rust
Last synced: 12 days ago
JSON representation
Solution to the React problem on Exercism for Rust's track
- Host: GitHub
- URL: https://github.com/cwithmichael/exercism-rust-cell
- Owner: cwithmichael
- License: mit
- Created: 2022-02-05T02:03:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-05T11:05:05.000Z (over 4 years ago)
- Last Synced: 2025-01-03T09:14:47.398Z (over 1 year ago)
- Topics: rust
- Language: Rust
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Description
This is my solution to the [React problem](https://exercism.org/tracks/rust/exercises/react) on Exercism for Rust's track.
The original readme for the problem is below.
## React
Welcome to React on Exercism's Rust Track.
If you need help running the tests or submitting your code, check out `HELP.md`.
### Instructions
Implement a basic reactive system.
Reactive programming is a programming paradigm that focuses on how values
are computed in terms of each other to allow a change to one value to
automatically propagate to other values, like in a spreadsheet.
Implement a basic reactive system with cells with settable values ("input"
cells) and cells with values computed in terms of other cells ("compute"
cells). Implement updates so that when an input value is changed, values
propagate to reach a new stable system state.
In addition, compute cells should allow for registering change notification
callbacks. Call a cell’s callbacks when the cell’s value in a new stable
state has changed from the previous stable state.
### Source
#### Created by
- @petertseng
#### Contributed to by
- @AndrewKvalheim
- @coriolinus
- @cwhakes
- @efx
- @ErikSchierboom
- @IanWhitney
- @jku
- @lutostag
- @mkantor
- @nfiles
- @rofrol
- @stringparser
- @xakon
- @ZapAnton