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
26
27
28
29
30
31
32
33
use crate::View;

/// Applies the Tanh function to the output of its View component
#[derive(Debug, Clone)]
pub struct Tanh<V> {
    view: V,
}

impl<V> Tanh<V>
where
    V: View,
{
    /// Create a new instance with a chained View
    #[inline]
    pub fn new(view: V) -> Self {
        Self { view }
    }
}

impl<V> View for Tanh<V>
where
    V: View,
{
    #[inline(always)]
    fn update(&mut self, val: f64) {
        self.view.update(val);
    }

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