Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CON-2180-macro_map-subject #2220

Merged
merged 2 commits into from
Oct 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions subjects/macro_map/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
## macro_map

### Instructions

Create a macro rule called `hash_map` to initialize and declare an `HashMap` at the same time, very similar to what `vec!` macro does for `Vector`.
mikysett marked this conversation as resolved.
Show resolved Hide resolved

> Your macro should accept both leading commas and non leading commas syntax to be more flexible in terms of coding style and reflect the language general style.
mikysett marked this conversation as resolved.
Show resolved Hide resolved

### Expected Macro

```rust
macro_rules! hash_map {
}
```

### Usage

Here is a possible program to test your function,

```rust
use macro_map::hash_map;
use std::collections::HashMap;

fn main() {
let empty: HashMap<u32, u32> = hash_map!();
let new = hash_map!('a' => 22, 'b' => 1, 'c' => 10);
let nested = hash_map!(
"first" => hash_map!(
"Rob" => 32.2,
"Gen" => 44.1,
"Chris" => 10.,
),
"second" => hash_map!()
);
println!("{:?}", empty);
println!("{:?}", new);
println!("{:?}", nested);
}
```

And its output:

```console
$ cargo run
{}
{'b': 1, 'a': 22, 'c': 10}
{"first": {"Rob": 32.2, "Gen": 44.1, "Chris": 10.0}, "second": {}}
$
```