1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use crate::View;

/// Provides a float value to other views
#[derive(Default, Debug, Clone)]
pub struct Constant {
    val: f64,
}

impl Constant {
    /// Create a new instance with the given value
    #[inline(always)]
    pub fn new(val: f64) -> Self {
        Self { val }
    }
}

impl View for Constant {
    #[inline(always)]
    fn update(&mut self, _val: f64) {}

    #[inline(always)]
    fn last(&self) -> f64 {
        self.val
    }
}