> ## 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.

# core::cmp::min

Takes two comparable values `a` and `b` and returns
the smaller of the two values.

## Signature

```rust theme={null}
pub fn min, +Drop, +Copy>(a: T, b: T) -> T
```

## Examples

```rust theme={null}
use core::cmp::min;

assert!(min(0, 1) == 0);
```
