cargo fmt

This commit is contained in:
Levy A.
2025-04-12 18:55:48 -03:00
parent 5c0b112125
commit d210ee1497

View File

@@ -285,7 +285,10 @@ impl ProgramState {
}
pub fn get_parameter(&self, index: NonZero<usize>) -> OwnedValue {
self.parameters.get(&index).cloned().unwrap_or(OwnedValue::Null)
self.parameters
.get(&index)
.cloned()
.unwrap_or(OwnedValue::Null)
}
pub fn reset(&mut self) {