array_view icon indicating copy to clipboard operation
array_view copied to clipboard

Wrapper for references to array in C++.

Results 1 array_view issues
Sort by recently updated
recently updated
newest added

Hello, Reassigning an existing `array_view` is forbidden: ```cpp array_view& operator=(array_view const&) noexcept = delete; array_view& operator=(array_view &&) noexcept = delete; ``` Preventing the following usage: ```cpp array_view view; // ......