(
&self,
_direction: &Direction,
_mask: &[bool],
)
| 48 | } |
| 49 | |
| 50 | fn nonzero_whole_masked<T>( |
| 51 | &self, |
| 52 | _direction: &Direction, |
| 53 | _mask: &[bool], |
| 54 | ) -> anyhow::Result<Vec<T>> |
| 55 | where |
| 56 | T: PrimInt + Unsigned + Zero + AddAssign, |
| 57 | { |
| 58 | todo!() |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | impl<B: Backend> ComputeSum for ArrayElem<B> { |
nothing calls this directly
no outgoing calls
no test coverage detected