#include "tensorstore/tensorstore.h"
template <typename SourceElement,
         
 DimensionIndex SourceRank,
         
 ReadWriteMode SourceMode>
explicit tensorstore::TensorStore<ElementType, Rank, Mode>::
    
TensorStore(
        
unchecked_t,
        
TensorStore<SourceElement, SourceRank, SourceMode> other);

Unchecked conversion from an existing TensorStore.

Requires:

SourceElement is potentially convertible to Element

Requires:

SourceRank is potentially convertible to Rank

Requires:

SourceMode is potentially convertible to Mode

Pre:

other.dtype() is compatible with Element

Pre:

other.rank() is compatible with static_rank

Pre:

other.read_write_mode() is compatible with static_mode