binius_field/arch/portable/
packed_1.rs1use super::packed::{impl_broadcast, impl_ops_for_zero_height, PackedPrimitiveType};
4use crate::{
5 arch::PairwiseStrategy, arithmetic_traits::impl_transformation_with_strategy, underlier::U1,
6 BinaryField1b,
7};
8
9pub type PackedBinaryField1x1b = PackedPrimitiveType<U1, BinaryField1b>;
11
12impl_broadcast!(U1, BinaryField1b);
14
15impl_ops_for_zero_height!(PackedBinaryField1x1b);
17
18impl_transformation_with_strategy!(PackedBinaryField1x1b, PairwiseStrategy);