You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,9 @@ SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
14
14
15
15
## Usage
16
16
17
-
`std::ranges::any_view` is a class template that provides a type-erased interface for `std::ranges::view`. It may additionally model other concepts like `std::ranges::contiguous_range`, `std::ranges::sized_range`, `std::ranges::borrowed_range`, and `std::copyable` depending on the instantiation.
17
+
`std::ranges::any_view` is a class template that provides a type-erased interface for `std::ranges::view`.
18
+
It may additionally model other concepts like `std::ranges::contiguous_range`, `std::ranges::sized_range`,
19
+
`std::ranges::borrowed_range`, and `std::copyable` depending on the instantiation.
18
20
19
21
## Integrate beman.any_view into your project
20
22
@@ -34,7 +36,8 @@ FetchContent_Declare(
34
36
FetchContent_MakeAvailable(beman.any_view)
35
37
```
36
38
37
-
You will also need to add `beman::any_view` to the link libraries of any targets that include `beman/any_view/*.hpp` in their source or header files:
39
+
You will also need to add `beman::any_view` to the link libraries of any targets that include `beman/any_view/*.hpp` in
40
+
their source or header files:
38
41
39
42
```cmake
40
43
target_link_libraries(yourlib PUBLIC beman::any_view)
0 commit comments