Lines Matching defs:__args
89 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr _Container to(_Range&& __range, _Args&&... __args) {
101 return _Container(std::forward<_Range>(__range), std::forward<_Args>(__args)...);
106 return _Container(from_range, std::forward<_Range>(__range), std::forward<_Args>(__args)...);
111 return _Container(ranges::begin(__range), ranges::end(__range), std::forward<_Args>(__args)...);
117 _Container __result(std::forward<_Args>(__args)...);
136 std::forward<_Args>(__args)...);
196 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto to(_Range&& __range, _Args&&... __args) {
198 return ranges::to<_DeduceExpr>(std::forward<_Range>(__range), std::forward<_Args>(__args)...);
205 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto to(_Args&&... __args) {
217 return __range_adaptor_closure_t(std::__bind_back(__to_func, std::forward<_Args>(__args)...));
223 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto to(_Args&&... __args) {
236 return __range_adaptor_closure_t(std::__bind_back(__to_func, std::forward<_Args>(__args)...));