Function vstd::math::max3

source ·
pub open spec fn max3(x: int, y: int, z: int) -> int
Expand description
{ if x < y { max(y, z) } else { max(x, z) } }

This function computes the maximum of three given integers.