don't
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

style(types): fix indentation

Signed-off-by: tjh <x@tjh.dev>

tjh be43760d 0910f22e

+16 -16
+16 -16
crates/gordian-types/src/tid.rs
··· 333 333 ); 334 334 335 335 #[rustfmt::skip] 336 - // src 337 - // ╭─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────╮ 338 - // │ ╲ │ 0 │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 10 │ 11 │ 12 │ 339 - // d ├─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤ 340 - // s │ 0 │ < 4 │ > 1 │ │ │ │ │ │ │ │ │ │ │ │ 341 - // t │ 1 │ │ < 7 │ < 2 │ > 3 │ │ │ │ │ │ │ │ │ │ 342 - // │ 2 │ │ │ │ < 5 │ < 0 │ │ │ │ │ │ │ │ │ 343 - // │ 3 │ │ │ │ │ │ < 3 │ > 2 │ │ │ │ │ │ │ 344 - // │ 4 │ │ │ │ │ │ │ < 6 │ < 1 │ > 4 │ │ │ │ │ 345 - // │ 5 │ │ │ │ │ │ │ │ │ < 4 │ > 1 │ │ │ │ 346 - // │ 6 │ │ │ │ │ │ │ │ │ │ < 7 │ < 2 │ > 3 │ │ 347 - // │ 7 │ │ │ │ │ │ │ │ │ │ │ │ < 5 │ > 0 │ 348 - // ╰─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────╯ 336 + // src 337 + // ╭─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────╮ 338 + // │ ╲ │ 0 │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 10 │ 11 │ 12 │ 339 + // d ├─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤ 340 + // s │ 0 │ < 4 │ > 1 │ │ │ │ │ │ │ │ │ │ │ │ 341 + // t │ 1 │ │ < 7 │ < 2 │ > 3 │ │ │ │ │ │ │ │ │ │ 342 + // │ 2 │ │ │ │ < 5 │ < 0 │ │ │ │ │ │ │ │ │ 343 + // │ 3 │ │ │ │ │ │ < 3 │ > 2 │ │ │ │ │ │ │ 344 + // │ 4 │ │ │ │ │ │ │ < 6 │ < 1 │ > 4 │ │ │ │ │ 345 + // │ 5 │ │ │ │ │ │ │ │ │ < 4 │ > 1 │ │ │ │ 346 + // │ 6 │ │ │ │ │ │ │ │ │ │ < 7 │ < 2 │ > 3 │ │ 347 + // │ 7 │ │ │ │ │ │ │ │ │ │ │ │ < 5 │ > 0 │ 348 + // ╰─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────╯ 349 349 350 - // Lanes 0..=7 are the first left shift from each row above. Lanes 8..=11 are 351 - // additional left shifts from rows 1, 2, 4, and 6. Lane 15 is used for `0`. 352 - let mut l1 = simd_swizzle!(data, [0, 1, 3, 5, 6, 8, 9, 11, 2, 4, 7, 10, 15]); 350 + // Lanes 0..=7 are the first left shift from each row above. Lanes 8..=11 are 351 + // additional left shifts from rows 1, 2, 4, and 6. Lane 15 is used for `0`. 352 + let mut l1 = simd_swizzle!(data, [0, 1, 3, 5, 6, 8, 9, 11, 2, 4, 7, 10, 15]); 353 353 l1 <<= Simd::from_array([4, 7, 5, 3, 6, 4, 7, 5, 2, 0, 1, 2, 0]); 354 354 355 355 // Shuffle lanes 8, 9, 10, and 11 from l1 into final lanes. Lane 12 is `0`.