pub trait ClzEmitter<T0, T1> {
// Required method
fn clz(&mut self, rd: T0, rn: T1);
}Expand description
Emits the CLZ instruction.
Assembly forms: CLZ WD, WN; CLZ XD, XN; CLZ VD.T, VN.T; CLZ VD.T, VN.T.
Operands: rd, rn.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".