Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.starknet.io/llms.txt

Use this file to discover all available pages before exploring further.

Takes two comparable values a and b and returns the greater of the two values.

Signature

pub fn max, +Drop, +Copy>(a: T, b: T) -> T

Examples

use core::cmp::max;

assert!(max(0, 1) == 1);