std::indirect_array<T>::indirect_array
From cppreference.com
< cpp | numeric | valarray | indirect array
indirect_array( const indirect_array& other ); |
||
indirect_array() = delete; |
||
Constructs a indirect_array
from another indirect_array
other
.
The default constructor is implicitly deleted.
Parameters
other | - | indirect_array to initialize with
|