(self)
| 335 | |
| 336 | impl DerivedFunc { |
| 337 | pub fn name(self) -> &'static str { |
| 338 | match self { |
| 339 | DerivedFunc::LaneOf => "lane_of", |
| 340 | DerivedFunc::AsTruthy => "as_truthy", |
| 341 | DerivedFunc::HalfWidth => "half_width", |
| 342 | DerivedFunc::DoubleWidth => "double_width", |
| 343 | DerivedFunc::SplitLanes => "split_lanes", |
| 344 | DerivedFunc::MergeLanes => "merge_lanes", |
| 345 | DerivedFunc::DynamicToVector => "dynamic_to_vector", |
| 346 | DerivedFunc::Narrower => "narrower", |
| 347 | DerivedFunc::Wider => "wider", |
| 348 | } |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | #[derive(Debug, Hash)] |
no outgoing calls
no test coverage detected