Lines Matching defs:__args
79 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr _Container to(_Range&& __range, _Args&&... __args) {
91 return _Container(std::forward<_Range>(__range), std::forward<_Args>(__args)...);
96 return _Container(from_range, std::forward<_Range>(__range), std::forward<_Args>(__args)...);
101 return _Container(ranges::begin(__range), ranges::end(__range), std::forward<_Args>(__args)...);
107 _Container __result(std::forward<_Args>(__args)...);
137 std::forward<_Args>(__args)...);
197 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto to(_Range&& __range, _Args&&... __args) {
199 return ranges::to<_DeduceExpr>(std::forward<_Range>(__range), std::forward<_Args>(__args)...);
206 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto to(_Args&&... __args) {
218 return __pipeable(std::__bind_back(__to_func, std::forward<_Args>(__args)...));
224 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto to(_Args&&... __args) {
237 return __pipeable(std::__bind_back(__to_func, std::forward<_Args>(__args)...));