//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14, c++17, c++20 // // constexpr index_type stride(rank_type i) const noexcept; // // Constraints: extents_type::rank() > 0 is true. // // Preconditions: i < extents_type::rank() is true. // // Returns: extents().rev-prod-of-extents(i). #include #include #include #include #include #include // dynamic_extent #include "test_macros.h" template constexpr void test_stride(std::array strides, Args... args) { using M = std::layout_stride::mapping; M m(E(args...), strides); ASSERT_NOEXCEPT(m.stride(0)); for (size_t r = 0; r < E::rank(); r++) assert(strides[r] == m.stride(r)); ASSERT_NOEXCEPT(m.strides()); auto strides_out = m.strides(); static_assert(std::is_same_v>); for (size_t r = 0; r < E::rank(); r++) assert(strides[r] == strides_out[r]); } constexpr bool test() { constexpr size_t D = std::dynamic_extent; test_stride>(std::array{1}, 7); test_stride>(std::array{1}); test_stride>(std::array{8, 1}); test_stride>(std::array{720, 90, 10, 1}, 7, 9, 10); return true; } int main(int, char**) { test(); static_assert(test()); return 0; }