Exemple #1
0
    void inherit( self_type & parent ) {
#ifdef DEBUGGING
        assert( parent.size() <= size() );
#endif  // DEBUGGING

        memcpy( m_positions, parent.m_positions, parent.size() * sizeof(position_type) );
    }
 vector_range(self_type const & other)
   : base_type(const_cast<handle_type &>(other.handle()),
               other.size(), other.start(), other.stride()) {}