OpenKalman
full_extent_t.hpp
1 //@HEADER
2 // ************************************************************************
3 //
4 // Kokkos v. 4.0
5 // Copyright (2022) National Technology & Engineering
6 // Solutions of Sandia, LLC (NTESS).
7 //
8 // Under the terms of Contract DE-NA0003525 with NTESS,
9 // the U.S. Government retains certain rights in this software.
10 //
11 // Part of Kokkos, under the Apache License v2.0 with LLVM Exceptions.
12 // See https://kokkos.org/LICENSE for license information.
13 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
14 //
15 //@HEADER
16 #pragma once
17 
18 #include "macros.hpp"
19 
20 namespace std {
21 namespace experimental {
22 
23 struct full_extent_t { explicit full_extent_t() = default; };
24 
25 _MDSPAN_INLINE_VARIABLE constexpr auto full_extent = full_extent_t{ };
26 
27 } // end namespace experimental
28 } // namespace std
Definition: full_extent_t.hpp:23