1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-09 23:34:23 +00:00

update doc and example

This commit is contained in:
neargye 2019-10-26 22:08:46 +05:00
parent f951f3f04e
commit 49d2429cf1
2 changed files with 6 additions and 6 deletions

View file

@ -251,7 +251,7 @@ template <typename Char, typename Traits, typename E>
basic_ostream<Char, Traits>& operator<<(basic_ostream<Char, Traits>& os, optional<E> value);
```
* Out-of-the-box ostream operators for enums.
* Out-of-the-box ostream operators for all enums.
* Examples
```cpp
@ -284,7 +284,7 @@ template <typename E>
constexpr E& operator^=(E& lhs, E rhs) noexcept;
```
* Out-of-the-box bitwise operators for enums.
* Out-of-the-box bitwise operators for all enums.
* Examples
```cpp