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-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ N-dimensional array library for C++, developed and maintained by [VORtech](https
8
8
Getting started
9
9
---------------
10
10
11
-
This is a header-only library. To use it, simply add all files under `include` to your include directories. The library uses C++17 features and assumes a C++17 compliant compiler. Compatibility with the following compilers is tested:
11
+
This is a header-only library. To use it, simply add all files under `include` to your include directories. The library uses C++23 features and assumes a C++23 compliant compiler. Compatibility with the following compilers is tested:
Accesses the viewor element at the specified index. The behavior is undefined if `idx >= shape[0]`.
17
+
Accesses the view, slice or element at the specified indices or index ranges. The behavior is undefined if any indices are outside the bounds of the array.
12
18
13
-
1. Will return a mutable view or reference.
14
-
2. Will return a const view or reference.
19
+
1. Will return a mutable view, slice or reference.
20
+
2. Will return a const view, slice or reference.
21
+
22
+
If `sizeof...(Index) < N`, the result is similar to the arguments being padded with occurrences of [r()](../index-range/r.md#top) until `N` arguments are reached.
Represents a range of indices, for creating a slice when indexing into an array. Either from the start of an array dimension to the end of an array dimension (`index_range<0>`), from a specified start to the end of an array dimension (`index_range<1>`), or from a specified start to a specified end (`index_range<2>`).
0 commit comments