()
| 307 | |
| 308 | #[test] |
| 309 | fn replace_strided_end() { |
| 310 | let mut input = vec![1, 2, 3, 4]; |
| 311 | replace_slice_strided(&mut input, &[5, 6], 4, 1); |
| 312 | assert_eq!(input, vec![1, 2, 3, 4, 5, 6]); |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | /// Streams related to interrupts should not be used for i2s replacement. |
nothing calls this directly
no test coverage detected