blob: 026068e7eeda5e83f422f87ecbcbbc2ed35b739e [file] [log] [blame]
// Copyright 2020 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
#pragma once
#include <utility>
#include "pw_polyfill/standard_library/namespace.h"
#ifndef __cpp_lib_integer_sequence
#define __cpp_lib_integer_sequence 201304L
_PW_POLYFILL_BEGIN_NAMESPACE_STD
template <typename T, T... sequence>
struct integer_sequence {
static constexpr size_t size() noexcept { return sizeof...(sequence); }
};
namespace impl {
// In the absence of a compiler builtin for this, have MakeSequence expand
// recursively to enumerate all indices up to count.
template <size_t count, typename T, T... sequence>
struct MakeSequence : MakeSequence<count - 1, T, count - 1, sequence...> {};
template <typename T, T... sequence>
struct MakeSequence<0, T, sequence...> : std::integer_sequence<T, sequence...> {
};
} // namespace impl
template <size_t... sequence>
using index_sequence = integer_sequence<size_t, sequence...>;
template <typename T, T count>
using make_integer_sequence = impl::MakeSequence<count, T>;
template <size_t count>
using make_index_sequence = make_integer_sequence<size_t, count>;
template <typename... T>
using index_sequence_for = make_index_sequence<sizeof...(T)>;
_PW_POLYFILL_END_NAMESPACE_STD
#endif // __cpp_lib_integer_sequence