Update README.md for C++20 modules

This commit is contained in:
sha512sum 2024-07-31 02:22:33 +00:00
parent 6367dccf19
commit 4396d3525a

View file

@ -3,7 +3,7 @@
## Features ## Features
### Ranges Like Interface For TupleLike ### Ranges Like Interface For TupleLike
```cpp ```cpp
#include <utempl/utils.hpp> import utempl;
auto main() -> int { auto main() -> int {
using namespace utempl; using namespace utempl;
@ -18,9 +18,8 @@ auto main() -> int {
``` ```
### Storage types in array ### Storage types in array
```cpp ```cpp
#include <utempl/meta_info.hpp> import utempl;
#include <array> import std;
#include <type_traits>
auto main() -> int { auto main() -> int {
using namespace utempl; using namespace utempl;