casez and casex
// 2-bit priority encoder
input [7:0] A; // 8-bit input vector
output [1:0] Y; // 3-bit encoded output
reg [1:0] Y; // target of assignment
default: Y = 2’bx; // Don’t care when input isnt 1-hot
casez: alternatives can include z
? z bits are not used in the evaluation