//===----------------------------------------------------------------------===// // // 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 // // template constexpr auto data(C& c) -> decltype(c.data()); // C++17 // template constexpr auto data(const C& c) -> decltype(c.data()); // C++17 // template constexpr T* data(T (&array)[N]) noexcept; // C++17 // template constexpr const E* data(initializer_list il) noexcept; // C++17 #include #include #include #include #include #include "test_macros.h" #if TEST_STD_VER > 14 #include #endif template void test_const_container( const C& c ) { // Can't say noexcept here because the container might not be assert ( std::data(c) == c.data()); } template void test_const_container( const std::initializer_list& c ) { ASSERT_NOEXCEPT(std::data(c)); assert ( std::data(c) == c.begin()); } template void test_container( C& c ) { // Can't say noexcept here because the container might not be assert ( std::data(c) == c.data()); } template void test_container( std::initializer_list& c) { ASSERT_NOEXCEPT(std::data(c)); assert ( std::data(c) == c.begin()); } template void test_const_array( const T (&array)[Sz] ) { ASSERT_NOEXCEPT(std::data(array)); assert ( std::data(array) == &array[0]); } int main(int, char**) { std::vector v; v.push_back(1); std::array a; a[0] = 3; std::initializer_list il = { 4 }; test_container ( v ); test_container ( a ); test_container ( il ); test_const_container ( v ); test_const_container ( a ); test_const_container ( il ); #if TEST_STD_VER > 14 std::string_view sv{"ABC"}; test_container ( sv ); test_const_container ( sv ); #endif static constexpr int arrA [] { 1, 2, 3 }; test_const_array ( arrA ); return 0; }