// -*- C++ -*- //===------------------------------ span ---------------------------------===// // // 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++98, c++03, c++11, c++14, c++17 // // template // constexpr span(Container& cont); // template // constexpr span(const Container& cont); // // Remarks: These constructors shall not participate in overload resolution unless: // — extent == dynamic_extent, // — Container is not a specialization of span, // — Container is not a specialization of array, // — is_array_v is false, // — data(cont) and size(cont) are both well-formed, and // — remove_pointer_t(*)[] is convertible to ElementType(*)[]. // #include #include #include #include #include "test_macros.h" // Look ma - I'm a container! template struct IsAContainer { constexpr IsAContainer() : v_{} {} constexpr size_t size() const {return 1;} constexpr T *data() {return &v_;} constexpr const T *data() const {return &v_;} constexpr T *begin() {return &v_;} constexpr const T *begin() const {return &v_;} constexpr T *end() {return &v_ + 1;} constexpr const T *end() const {return &v_ + 1;} constexpr T const *getV() const {return &v_;} // for checking T v_; }; void checkCV() { std::vector v = {1,2,3}; // Types the same { std::span< int> s1{v}; // a span< int> pointing at int. } // types different { std::span s1{v}; // a span pointing at int. std::span< volatile int> s2{v}; // a span< volatile int> pointing at int. std::span< volatile int> s3{v}; // a span< volatile int> pointing at const int. std::span s4{v}; // a span pointing at int. } // Constructing a const view from a temporary { std::span s1{IsAContainer()}; std::span s3{std::vector()}; (void) s1; (void) s3; } } template constexpr bool testConstexprSpan() { constexpr IsAContainer val{}; std::span s1{val}; return s1.data() == val.getV() && s1.size() == 1; } template void testRuntimeSpan() { IsAContainer val{}; const IsAContainer cVal; std::span s1{val}; std::span s2{cVal}; assert(s1.data() == val.getV() && s1.size() == 1); assert(s2.data() == cVal.getV() && s2.size() == 1); } struct A{}; int main(int, char**) { static_assert(testConstexprSpan(), ""); static_assert(testConstexprSpan(), ""); static_assert(testConstexprSpan(), ""); static_assert(testConstexprSpan(), ""); testRuntimeSpan(); testRuntimeSpan(); testRuntimeSpan(); testRuntimeSpan(); testRuntimeSpan(); checkCV(); return 0; }