Get the number of bytes used to store this type in memory.
(self)
| 310 | |
| 311 | /// Get the number of bytes used to store this type in memory. |
| 312 | pub fn bytes(self) -> u32 { |
| 313 | (self.bits() + 7) / 8 |
| 314 | } |
| 315 | |
| 316 | /// Get a SIMD vector type with `n` times more lanes than this one. |
| 317 | /// |