#include "tensorstore/util/element_pointer.h"
template <typename T>
constexpr bool tensorstore::IsElementTag =
   
 (IsElementType<T> && !IsShared<T>);

An ElementTag type is a type T or Shared<T> where T satisfies IsElementType<T>. It specifies a pointer type of T* or std::shared_ptr<T>, respectively.