-
#include "tensorstore/util/option.h"
-
template <typename Options, typename... Option>
constexpr bool tensorstore::IsCompatibleOptionSequence =
((!std::is_same_v<Options, std::remove_cvref_t<Option>> &&
Options::template IsOption<std::remove_cvref_t<Option>>) &&
...); Checks if every
Option
is compatible with the specifiedOptions
type.