fix unnecessary unwrap
This commit is contained in:
parent
35e1d5c016
commit
859603d530
@ -182,10 +182,10 @@ impl Function {
|
|||||||
(1..=self.pixel_width)
|
(1..=self.pixel_width)
|
||||||
.map(|x| (x as f64 / resolution as f64) + min_x)
|
.map(|x| (x as f64 / resolution as f64) + min_x)
|
||||||
.map(|x| {
|
.map(|x| {
|
||||||
let i = x_data.iter().position(|&r| r == x);
|
let i_option = x_data.iter().position(|&r| r == x);
|
||||||
|
|
||||||
if i.is_some() {
|
if let Some(i) = i_option {
|
||||||
back_cache[i.unwrap()]
|
back_cache[i]
|
||||||
} else {
|
} else {
|
||||||
Value::new(x, self.run_func(x))
|
Value::new(x, self.run_func(x))
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user