-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[package] | ||
name = "closures" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
Closures in Rust are anonymous functions that can **capture variables from their environment.** They are similar to functions but have some unique properties that make them powerful and flexible. Closures are often used for short, simple operations and can be defined in a very concise way. | ||
|
||
## Understanding Closures | ||
|
||
A closure is defined using a pair of vertical bars `|` that enclose the parameters, followed by the closure body. Here's a simple example of a closure that adds two numbers: | ||
|
||
```rust | ||
let add = |a: i32, b: i32| a + b; | ||
``` | ||
|
||
In this example, add is a closure that takes two parameters, `a` and `b`, and returns their **sum**. **You can call this closure just like a function**: | ||
|
||
```rust | ||
let result = add(2, 3); // result is 5 | ||
``` | ||
|
||
Closures can **capture variables** from their enclosing scope. For example: | ||
|
||
```rust | ||
let x = 2; | ||
let add_x = |a: i32| a + x; | ||
let result = add_x(3); // result is 5 | ||
``` | ||
|
||
In this case, the closure `add_x` captures the variable `x` from the surrounding scope and adds it to its parameter `a`. | ||
|
||
## Your task | ||
|
||
Your task is to complete the implementation of the following closures: | ||
|
||
- `add_closure`: This closure should return the **sum of two integers**. | ||
- `subtract_closure`: This closure should return the **difference between two integers**. | ||
- `multiply_closure`: This closure should return the **product of two integers**. | ||
|
||
## Requirements | ||
|
||
- Each closure should take two parameters of type `i32`. | ||
- Each closure should return a result of type `i32`. | ||
|
||
## Example | ||
|
||
```rust | ||
assert_eq!(add_closure(3, 4), 7); | ||
assert_eq!(subtract_closure(10, 4), 6); | ||
assert_eq!(multiply_closure(3, 5), 15); | ||
``` | ||
|
||
## Hints | ||
|
||
- Remember to use the `let` keyword to define closures. | ||
- Use the `|a, b|` syntax to define the parameters of the closure. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
pub fn create_closures() -> ( | ||
impl Fn(i32, i32) -> i32, | ||
impl Fn(i32, i32) -> i32, | ||
impl Fn(i32, i32) -> i32, | ||
) { | ||
let add_closure = |a, b| a + b; | ||
let subtract_closure = |a, b| a - b; | ||
let multiply_closure = |a, b| a * b; | ||
|
||
(add_closure, subtract_closure, multiply_closure) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
pub fn create_closures() -> ( | ||
impl Fn(i32, i32) -> i32, | ||
impl Fn(i32, i32) -> i32, | ||
impl Fn(i32, i32) -> i32, | ||
) { | ||
let add_closure = |a, b| { | ||
// Step 1: Implement here | ||
}; | ||
|
||
// Step 2: | ||
// Create the `subtract_closure` closure that subtracts two `i32` values. | ||
|
||
// Step 3: | ||
// Create the `multiply_closure` closure that multiplies two `i32` values. | ||
|
||
(add_closure, subtract_closure, multiply_closure) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#[cfg(test)] | ||
mod tests { | ||
use closures::*; | ||
|
||
#[test] | ||
fn test_add_closure() { | ||
let (add_closure, _, _) = create_closures(); | ||
assert_eq!(add_closure(3, 4), 7); | ||
assert_eq!(add_closure(-1, 1), 0); | ||
assert_eq!(add_closure(0, 0), 0); | ||
} | ||
|
||
#[test] | ||
fn test_subtract_closure() { | ||
let (_, subtract_closure, _) = create_closures(); | ||
assert_eq!(subtract_closure(10, 4), 6); | ||
assert_eq!(subtract_closure(4, 10), -6); | ||
assert_eq!(subtract_closure(0, 0), 0); | ||
} | ||
|
||
#[test] | ||
fn test_multiply_closure() { | ||
let (_, _, multiply_closure) = create_closures(); | ||
assert_eq!(multiply_closure(3, 5), 15); | ||
assert_eq!(multiply_closure(-2, 3), -6); | ||
assert_eq!(multiply_closure(0, 10), 0); | ||
} | ||
} |