You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.6 KiB

## box_it
### Instructions
3 years ago
Create the following **functions**:
- `transform_and_save_on_heap`: which accepts a string of numbers separated by spaces. If a number has a `'k'` as a suffix it should be multiplied by 1000. The function transforms those numbers into a vector of `u32`, and saves them in the heap using `Box`.
- `take_value_ownership`: which accepts the return value from `transform_and_save_on_heap`, unboxes the value, and returns it.
3 years ago
### Expected Functions
```rust
3 years ago
pub fn transform_and_save_on_heap(s: String) -> Box<Vec<u32>> {
}
pub fn take_value_ownership(a: Box<Vec<u32>>) -> Vec<u32> {
}
```
### Usage
3 years ago
Here is a program to test your functions
```rust
3 years ago
use box_it::*;
fn main() {
let new_str = String::from("5.5k 8.9k 32");
// creating a variable and we save it in the Heap
let a_h = transform_and_save_on_heap(new_str);
println!("Box value : {:?}", &a_h);
println!("size occupied in the stack : {:?} bytes", (std::mem::size_of_val(&a_h)));
3 years ago
let a_b_v = take_value_ownership(a_h);
println!("value : {:?}", &a_b_v);
println!("size occupied in the stack : {:?} bytes", (std::mem::size_of_val(&a_b_v)));
// whenever the box, in this case "a_h", goes out of scope it will be deallocated, freed
}
```
And its output:
```console
$ cargo run
3 years ago
Box value : [5500, 8900, 32]
size occupied in the stack : 8 bytes
3 years ago
value : [5500, 8900, 32]
size occupied in the stack : 24 bytes
$
```
### Notions
- [smart pointers](https://doc.rust-lang.org/book/ch15-00-smart-pointers.html)
- [using box](https://doc.rust-lang.org/book/ch15-01-box.html)