Applying Closure to two numbers in Rust
Write a Rust function that takes a closure and two numbers, and returns the result of applying the closure to the two numbers.
Sample Solution:
Rust Code:
Output:
Result: 300
Explanation:
In the exercise above,
- The "apply_closure_to_numbers()" function takes three generic parameters: 'F', representing the closure type, and 'T', representing the numeric type of the input numbers.
- The function also specifies trait bounds using the "where" keyword:
- F: Fn(T, T) -> T indicates that the closure 'F' must accept two arguments of type T and return a value of type 'T'.
- T: Copy ensures that the input numbers can be copied, allowing them to be passed by value to the closure.
- Inside the function body, the closure "closure" is applied to the input numbers 'num1' and 'num2', and the result is returned.
- In the main function, a closure "add_closure" is defined that adds two numbers.
- The "apply_closure_to_numbers()" function is called with "add_closure" and two numbers (100 and 200), and the result is printed to the console.
Rust Code Editor:
Previous: Applying Closure to a given number in Rust.
Next: Modify vector elements with Rust Closure function.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics