1/* 2 Appellation: linear <module> 3 Contrib: FL03 <jo3mccain@icloud.com> 4*/ 5 6impl<'a, T> crate::activate::LinearActivation for &'a T 7where 8 T: Clone, 9{ 10 type Output = T; 11 12 fn linear(self) -> Self::Output { 13 self.clone() 14 } 15}