//===----------------------------------------------------------------------===// // // 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 // class std::ranges::lazy_split_view::outer-iterator::value_type; #include #include #include #include "../types.h" using V = ValueTypeForward; static_assert(std::ranges::forward_range); static_assert(std::ranges::view); static_assert(std::is_base_of_v, ValueTypeForward>); constexpr bool test() { // empty() { { SplitViewForward v("abc def", " "); auto val = *v.begin(); assert(!val.empty()); } { SplitViewForward v; auto val = *v.begin(); assert(val.empty()); } } // operator bool() { { SplitViewForward v("abc def", " "); auto val = *v.begin(); assert(val); } { SplitViewForward v; auto val = *v.begin(); assert(!val); } } // front() { SplitViewForward v("abc def", " "); auto val = *v.begin(); assert(val.front() == 'a'); } return true; } int main(int, char**) { test(); static_assert(test()); return 0; }