Path: blob/main/contrib/llvm-project/libcxx/include/__fwd/span.h
35233 views
// -*- C++ -*-1//===---------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===---------------------------------------------------------------------===//89#ifndef _LIBCPP___FWD_SPAN_H10#define _LIBCPP___FWD_SPAN_H1112#include <__config>13#include <cstddef>14#include <limits>1516#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)17# pragma GCC system_header18#endif1920_LIBCPP_PUSH_MACROS21#include <__undef_macros>2223_LIBCPP_BEGIN_NAMESPACE_STD2425#if _LIBCPP_STD_VER >= 202627inline constexpr size_t dynamic_extent = numeric_limits<size_t>::max();28template <typename _Tp, size_t _Extent = dynamic_extent>29class span;3031#endif3233_LIBCPP_END_NAMESPACE_STD3435_LIBCPP_POP_MACROS3637#endif // _LIBCPP___FWD_SPAN_H383940