Skip to content

Commit

Permalink
u readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hl037 committed Sep 24, 2021
1 parent 25f79f4 commit 8d3851d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ set.remove(22, 28);
std::cout<<(set.find(25) != set.end)<<endl; // 0
std::cout<<(set.find(20) != set.end)<<endl; // 1
std::cout<<(set.find(25, 30) != set.end)<<endl; // 0
std::cout<<(set.find(30, 35) != set.end)<<endl; // 1
std::cout<<(set.find(25, 30) != set.end())<<endl; // 0
std::cout<<(set.find(30, 35) != set.end())<<endl; // 1
for(const std::pair<int, int> & r : set){
std::cout<<"[ "<<r.first<<" , "<<r.second<<")"<<std::endl;
Expand All @@ -35,7 +35,9 @@ make all
make run
```

...It will also generate coverage informations.
...It will also generate coverage informations. To get a report, do `make coverage`

Any code on master the branch is extensively tested and require 100% coverage.

The library is still under developpement and features like merge, set difference are coming.

0 comments on commit 8d3851d

Please sign in to comment.