Remove m_count from beginning of data in
This MR moves the m_count
(shared referene count for shared arrays) from being stored in the first word of the actual data array (m_data
) for the Array
into its own
location. See issue #91 (closed) for details. The idea behind this change is to simplify the Array
class to make it more understandable and to potentially allow for better data alignment
and code vectorization.
Closes #91 (closed) .
Edited by Chris Cantwell