Skip to content

Commit

Permalink
range-v3 category
Browse files Browse the repository at this point in the history
  • Loading branch information
huixie90 committed May 24, 2024
1 parent 859aff8 commit e303d76
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions any_view.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,17 @@ considered.
Here is the type declaration

```cpp
enum class category
{
none = 0,
input = 1,
forward = 3,
bidirectional = 7,
random_access = 15,
mask = random_access,
sized = 16,
};

template<typename Ref, category Cat = category::input>
struct any_view;
```
Expand Down

0 comments on commit e303d76

Please sign in to comment.