Return the total number of bits of an instance of this type.
(&self)
| 74 | |
| 75 | /// Return the total number of bits of an instance of this type. |
| 76 | pub fn width(&self) -> u64 { |
| 77 | self.lane_count() * self.lane_bits() |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | impl fmt::Display for ValueType { |
no test coverage detected