if
例:
min = x < y ? (x < z ? x : z) : (y < z ? y : z)
min = if x < y x < z ? x : z else y < z ? y : z end
'Ruby Style Guide' からアイデアを得ています