// -*- C++ -*-
//===-- tuple -------------------------------------------------------------===//
//
// Copyright (C) Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
// This file incorporates work covered by the following copyright and permission
// notice:
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===//
#ifndef __ONEDPL_tuple
#define __ONEDPL_tuple
#include "oneapi/dpl/internal/common_config.h"
#include <tuple>

namespace oneapi
{
namespace dpl
{
using ::std::forward_as_tuple;
using ::std::get;
using ::std::ignore;
using ::std::make_tuple;
using ::std::tie;
using ::std::tuple;
using ::std::tuple_cat;
using ::std::tuple_element;
using ::std::tuple_size;
#if __cplusplus > 201402L
using ::std::apply;
using ::std::make_from_tuple;
#endif
} // namespace dpl
} // namespace oneapi
#endif
