We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef1c44b commit 473361aCopy full SHA for 473361a
portable/src/implementation/simd.rs
@@ -199,8 +199,6 @@ trait Lookup16 {
199
trait SimdU8Value<const N: usize>
200
where
201
LaneCount<N>: SupportedLaneCount,
202
- Self: Copy,
203
- Self: Lookup16,
204
{
205
#[expect(clippy::too_many_arguments)]
206
fn from_32_cut_off_leading(
@@ -961,7 +959,7 @@ impl basic::imp::ChunkedUtf8Validator for ChunkedUtf8ValidatorImp {
961
959
}
962
960
963
964
-pub(crate) use v256 as auto; // FIXME: select based on target feature
+pub(crate) use v128 as auto; // FIXME: select based on target feature
965
966
pub(crate) mod v128 {
967
/// Validation implementation for CPUs supporting the SIMD extension (see module).
0 commit comments