16 lines
573 B
Rust
16 lines
573 B
Rust
// TODO: Add the necessary trait bounds to `min` so that it compiles successfully.
|
|
// Refer to the documentation of the `std::cmp` module for more information on the traits you might need.
|
|
//
|
|
// Note: there are different trait bounds that'll make the compiler happy, but they come with
|
|
// different _semantics_. We'll cover those differences later in the course when we talk about ordered
|
|
// collections (e.g. BTreeMap).
|
|
|
|
/// Return the minimum of two values.
|
|
pub fn min<T>(left: T, right: T) -> T {
|
|
if left <= right {
|
|
left
|
|
} else {
|
|
right
|
|
}
|
|
}
|