-
#include "tensorstore/util/element_pointer.h"
-
template <typename T>
constexpr bool tensorstore::IsElementTag =
(IsElementType<T> && !IsShared<T>); An ElementTag type is a type
T
orShared<T>
whereT
satisfiesIsElementType<T>
. It specifies a pointer type ofT*
orstd::shared_ptr<T>
, respectively.