//===-- A data structure for a fixed capacity data store --------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_LIBC_SRC___SUPPORT_FIXEDVECTOR_H #define LLVM_LIBC_SRC___SUPPORT_FIXEDVECTOR_H #include "src/__support/CPP/array.h" #include "src/__support/CPP/iterator.h" #include "src/__support/macros/config.h" namespace LIBC_NAMESPACE_DECL { // A fixed size data store backed by an underlying cpp::array data structure. It // supports vector like API but is not resizable like a vector. template <typename T, size_t CAPACITY> class FixedVector { … }; } // namespace LIBC_NAMESPACE_DECL #endif // LLVM_LIBC_SRC___SUPPORT_FIXEDVECTOR_H