mirror of
https://github.com/BlackMATov/flat.hpp.git
synced 2025-12-13 01:36:27 +07:00
update README
This commit is contained in:
23
README.md
23
README.md
@@ -25,14 +25,15 @@
|
||||
|
||||
## Installation
|
||||
|
||||
[flat.hpp][flat] is a header only library. All you need to do is copy the header files (`flat_set.hpp` and `flat_map.hpp`) into your project and include them:
|
||||
[flat.hpp][flat] is a header only library. All you need to do is copy the header files (`flat_set.hpp` and `flat_map.hpp`) into your project and include them.
|
||||
|
||||
```cpp
|
||||
#include "flat_set.hpp"
|
||||
#include "flat_map.hpp"
|
||||
```
|
||||
## API
|
||||
- [Flat Set](#flat-set)
|
||||
- [Flat Map](#flat-map)
|
||||
- [Flat Multiset](#flat-multiset)
|
||||
- [Flat Multimap](#flat-multimap)
|
||||
|
||||
## flat_set
|
||||
## Flat Set
|
||||
|
||||
```cpp
|
||||
template < typename Key
|
||||
@@ -223,7 +224,7 @@ bool operator>=(
|
||||
const flat_set<K, C, A>& r);
|
||||
```
|
||||
|
||||
## flat_map
|
||||
## Flat Map
|
||||
|
||||
```cpp
|
||||
template < typename Key
|
||||
@@ -431,4 +432,12 @@ bool operator>=(
|
||||
const flat_map<K, V, C, A>& r);
|
||||
```
|
||||
|
||||
## Flat Multiset
|
||||
|
||||
> coming soon!
|
||||
|
||||
## Flat Multimap
|
||||
|
||||
> coming soon!
|
||||
|
||||
## [License (MIT)](./LICENSE.md)
|
||||
|
||||
Reference in New Issue
Block a user