Add hashmap, hashset, treemap, and treeset macros
Nobody has claimed this yet.
- Dominant language
- Markdown
- Stars
- 6.6k
- Forks
- 1.7k
- Avg merge
- 16h 14m
- Merged PRs (30d)
- 1
Description
Issue by gsingh93
Saturday Jun 07, 2014 at 16:49 GMT
For earlier discussion, see https://github.com/rust-lang/rust/issues/14726
This issue was labelled with: A-syntaxext in the Rust repository
I wanted to create an issue first asking about this before submitting a pull request.
Can I go ahead an implement hashmap!(), hashset!(), treemap!(), and treeset!() macros for constructing those collections with the given arguments? The syntax would be:
let h = hashmap!("foo" => "bar");
let s = hashset!("foo");
I already have these macros implemented in my own projects, so I'd just have to add them to macros.rs.
If I can add these, is there a process for testing macros? Or would I just replace all occurrences of hash{map,set} and tree{map,set} creation in the tests by the macros?
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with macros.rs and the earlier discussion in Rust issue #14726, then read the linked comment thread for the proposed collection-macro design and testing process. Done means the requested hashmap!, hashset!, treemap!, and treeset! macros have an agreed implementation and appropriate macro tests.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- compilers
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100