//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // 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 #if __cplusplus <= 201402L int main () {} #else #include #include #include #include #include template void test_const_container( const C& c ) { assert ( std::data(c) == c.data()); } template void test_const_container( const std::initializer_list& c ) { assert ( std::data(c) == c.begin()); } template void test_container( C& c ) { assert ( std::data(c) == c.data()); } template void test_container( std::initializer_list& c) { assert ( std::data(c) == c.begin()); } template void test_const_array( const T (&array)[Sz] ) { assert ( std::data(array) == &array[0]); } int main() { 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 ); static constexpr int arrA [] { 1, 2, 3 }; test_const_array ( arrA ); } #endif