Generalize constraints to observables #48

Merged
glen merged 25 commits from Vectornaut/dyna3:observables_on_main into main 2025-03-10 23:43:25 +00:00
Showing only changes of commit c368a38803 - Show all commits

View file

@ -272,7 +272,7 @@ impl Assembly {
);
}
pub fn insert_regulator(&self, regulator: Regulator) {
fn insert_regulator(&self, regulator: Regulator) {
glen marked this conversation as resolved Outdated
Outdated
Review

Should this really be pub? Where would a client of Assembly get a "free-floating" regulator to insert? Seems, at least for the moment, like a private helper for insert_new_regulator, and indeed, at the moment it is only called from there.

Should this really be `pub`? Where would a client of Assembly get a "free-floating" regulator to insert? Seems, at least for the moment, like a private helper for `insert_new_regulator`, and indeed, at the moment it is only called from there.

Good point! I've made insert_regulator private for now (c368a38).

Good point! I've made `insert_regulator` private for now (c368a38).
let subjects = regulator.subjects;
let key = self.regulators.update(|regs| regs.insert(regulator));
let subject_regulators = self.elements.with(
glen marked this conversation as resolved Outdated
Outdated
Review

Isn't there a way in Rust to just do the equivalent of JavaScript's forEach on the two entries of subjects, looking the entry up in elts and updating the regulators of each by inserting key in them? I mean, rather than non-DRY-ly having to write two identical update calls?

Isn't there a way in Rust to just do the equivalent of JavaScript's `forEach` on the two entries of subjects, looking the entry up in elts and updating the regulators of each by inserting key in them? I mean, rather than non-DRY-ly having to write two identical update calls?

I think tuples are designed with arbitrary combinations of types in mind, so I'd be surprised to find utility methods to broadcast over tuples of the same type—and indeed, I haven't managed to find any.

If we change the subjects field from a tuple to a fixed-length array, as I'm expecting to do when we address issue #55, we can make this code less repetitive by iterating over the array.

I think tuples are designed with arbitrary combinations of types in mind, so I'd be surprised to find utility methods to broadcast over tuples of the same type—and indeed, I haven't managed to find any. If we change the `subjects` field from a tuple to a fixed-length array, as I'm expecting to do when we address issue #55, we can make this code less repetitive by iterating over the array.
Outdated
Review

Ah, this strongly suggests that the subjects field should be a fixed-length array, if there is no way to iterate over the entries of a tuple. So let's make that a definite part of the plan for #55, and I'll resolve this here.

Ah, this strongly suggests that the subjects field should be a fixed-length array, if there is no way to iterate over the entries of a tuple. So let's make that a definite part of the plan for #55, and I'll resolve this here.