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
) noexcept requires(std::is_const_v<T> && N == 1);
6
14
```
7
15
8
-
Constructs the view for the given shape over the given data.
16
+
Constructs a view from given data, a range or initializer list.
9
17
10
-
The behavior is undefined if the array pointed to by `data` contains less than `shape[0] * ... * shape[N-1]` elements.
18
+
1. Constructs the view for the given shape over the given data. The behavior is undefined if the array pointed to by `data` contains less than `shape[0] * ... * shape[N-1]` elements.
19
+
2. Constructs the 1D view from the given contiguous range.
20
+
3. Constructs the 1D view from the given initializer list.
0 commit comments