compute-runtime/shared/source/helpers/validators.h

28 lines
479 B
C++

/*
* Copyright (C) 2021-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <utility>
namespace NEO {
template <typename T = void>
bool areNotNullptr() {
return true;
}
template <typename T, typename... RT>
bool areNotNullptr(T t, RT... rt) {
return (t != nullptr) && areNotNullptr<RT...>(rt...);
}
template <typename T, typename... RT>
bool isAnyNullptr(T t, RT... rt) {
return !areNotNullptr(t, rt...);
}
} // namespace NEO