Function vstd::math::max

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

This function computes the maximum of two given integers.