(self, lanes: u16)
| 198 | } |
| 199 | |
| 200 | pub fn by(self, lanes: u16) -> ValueType { |
| 201 | if lanes == 1 { |
| 202 | self.into() |
| 203 | } else { |
| 204 | ValueType::Vector(VectorType::new(self, lanes.into())) |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | pub fn to_dynamic(self, lanes: u16) -> ValueType { |
| 209 | ValueType::DynamicVector(DynamicVectorType::new(self, lanes.into())) |