Is this a scalar floating point type?
(self)
| 237 | |
| 238 | /// Is this a scalar floating point type? |
| 239 | pub fn is_float(self) -> bool { |
| 240 | match self { |
| 241 | F16 | F32 | F64 | F128 => true, |
| 242 | _ => false, |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | /// Get log_2 of the number of lanes in this SIMD vector type. |
| 247 | /// |
no outgoing calls
no test coverage detected