> ## 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::integer::BoundedInt

Trait for getting the maximal and minimal values of an integer type.

## Signature

```rust theme={null}
pub trait BoundedInt
```

## Trait functions

### min

Returns the minimal value of the type.

#### Signature

```rust theme={null}
fn min() -> T
```

### max

Returns the maximal value of the type.

#### Signature

```rust theme={null}
fn max() -> T
```
