Searched defs:InputView (Results 1 – 7 of 7) sorted by relevance
33 struct InputView : std::ranges::view_base { struct46 static_assert(std::ranges::input_range<InputView>); argument
45 struct InputView : std::ranges::view_base { struct46 int x;
140 struct InputView : std::ranges::view_base { struct143 constexpr InputView() = default; argument144 constexpr InputView(const char* s) : InputView(std::string_view(s)) {} in InputView() function145 constexpr InputView(std::string_view v) { in InputView() argument160 friend constexpr bool operator==(const InputView& lhs, const InputView& rhs) { argument
85 struct InputView : std::ranges::view_base { struct87 constexpr explicit InputView(int* ptr = globalBuff) : ptr_(ptr) {} in ptr_() argument91 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
29 struct InputView : std::ranges::view_base { struct