MCPcopy Create free account
hub / github.com/MultiFuzz/MultiFuzz / insert_strided_middle

Function insert_strided_middle

hail-fuzz/src/utils.rs:281–285  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

279
280 #[test]
281 fn insert_strided_middle() {
282 let mut input = vec![1, 2, 3, 4];
283 insert_slice_strided(&mut input, &[5, 6], 2, 2);
284 assert_eq!(input, vec![1, 2, 5, 5, 6, 6, 3, 4]);
285 }
286
287 #[test]
288 fn insert_strided_end() {

Callers

nothing calls this directly

Calls 1

insert_slice_stridedFunction · 0.85

Tested by

no test coverage detected