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