std::indirect_array::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.
[edit] Parameters
other | - | indirect_array to initialize with
|