Generalize constraints to observables #48
|
@ -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
|
||||
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
glen
commented
Isn't there a way in Rust to just do the equivalent of JavaScript's 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?
Vectornaut
commented
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 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.
glen
commented
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.
|
||||
|
|
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 forinsert_new_regulator
, and indeed, at the moment it is only called from there.Good point! I've made
insert_regulator
private for now (c368a38
).