(a: Arc<Self>, b: Arc<Self>)
| 37 | } |
| 38 | |
| 39 | pub fn max(a: Arc<Self>, b: Arc<Self>) -> Arc<Self> { |
| 40 | Arc::new(Univ::Max(a, b)) |
| 41 | } |
| 42 | |
| 43 | pub fn imax(a: Arc<Self>, b: Arc<Self>) -> Arc<Self> { |
| 44 | Arc::new(Univ::IMax(a, b)) |
no outgoing calls
no test coverage detected