Searched defs:InputView (Results 1 – 6 of 6) sorted by relevance
34 struct InputView : std::ranges::view_base { struct47 static_assert(std::ranges::input_range<InputView>); argument
44 struct InputView : std::ranges::view_base { struct45 int x;
141 struct InputView : std::ranges::view_base { struct144 constexpr InputView() = default; argument145 constexpr InputView(const char* s) : InputView(std::string_view(s)) {} in InputView() argument146 constexpr InputView(std::string_view v) { in InputView() argument161 friend constexpr bool operator==(const InputView& lhs, const InputView& rhs) { argument
87 struct InputView : std::ranges::view_base { struct89 constexpr explicit InputView(int* ptr = globalBuff) : ptr_(ptr) {} in ptr_() argument93 static_assert( std::ranges::view<InputView>); argument
78 struct InputView : std::ranges::view_base { struct79 …nstexpr cpp20_input_iterator<int*> begin() const { return cpp20_input_iterator<int*>(globalBuff); } in begin()80 constexpr int* end() const { return globalBuff + 8; } in end()
27 struct InputView : std::ranges::view_base { struct