We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ActiveQuery::input_outputs
ActiveQuery::seed_iteration
1 parent 8b6d12b commit f3dc2f3Copy full SHA for f3dc2f3
src/active_query.rs
@@ -73,7 +73,7 @@ impl ActiveQuery {
73
untracked_read: bool,
74
) {
75
assert!(self.input_outputs.is_empty());
76
- self.input_outputs = edges.iter().cloned().collect();
+ self.input_outputs.extend(edges.iter().cloned());
77
self.durability = self.durability.min(durability);
78
self.changed_at = self.changed_at.max(changed_at);
79
self.untracked_read |= untracked_read;
0 commit comments