Is this a SIMD vector type? A vector type has 2 or more lanes.
(self)
| 219 | /// |
| 220 | /// A vector type has 2 or more lanes. |
| 221 | pub fn is_vector(self) -> bool { |
| 222 | self.0 >= constants::VECTOR_BASE && !self.is_dynamic_vector() |
| 223 | } |
| 224 | |
| 225 | /// Is this a SIMD vector type with a runtime number of lanes? |
| 226 | pub fn is_dynamic_vector(self) -> bool { |
no test coverage detected