#include "tensorstore/index_space/output_index_map.h"
template <DimensionIndex OtherInputRank,
          DimensionIndex OtherOutputRank,
          ContainerKind OtherCKind>
  
requires (RankConstraint::Implies(OtherInputRank, InputRank)) &&
          
 (RankConstraint::Implies(OtherOutputRank, OutputRank))
tensorstore::OutputIndexMapRange<InputRank, OutputRank, CKind>::
    
OutputIndexMapRange(OutputIndexMapRange<OtherInputRank,
                                            OtherOutputRank,
                                            OtherCKind> other
);

Converts from a compatible OutputIndexMapRange type.