Return the number of lanes.
(&self)
| 47 | |
| 48 | /// Return the number of lanes. |
| 49 | pub fn lane_count(&self) -> u64 { |
| 50 | match *self { |
| 51 | ValueType::Vector(ref v) => v.lane_count(), |
| 52 | _ => 1, |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | /// Find the number of bytes that this type occupies in memory. |
| 57 | pub fn membytes(&self) -> u64 { |
no outgoing calls
no test coverage detected