#include "tensorstore/index_space/index_domain.h"
template <DimensionIndex N>
  
requires (RankConstraint::Implies(N, Rank))
explicit tensorstore::IndexDomain<Rank, CKind>::IndexDomain(
    
const std::string_view (&labels)[N]);
explicit tensorstore::IndexDomain<Rank, CKind>::IndexDomain(
    
span<const std::string_view, Rank> labels);
explicit tensorstore::IndexDomain<Rank, CKind>::IndexDomain(
    
span<const std::string, Rank> labels);
explicit tensorstore::IndexDomain<Rank, CKind>::IndexDomain(
    
span<const char*, Rank> labels);

Constructs an unbounded domain with the specified labels.