`std::move_only_function` & `std::execution` in Apple clang?

Is std::move_only_function or std:execution planned for an upcoming Xcode/libc++ release? The C++ compiler support page indicates that it is not currently implemented (Apple developer forums won't let me share a link to this page). Is the planned support for Xcode/libc++ published anywhere? If not, is there any particular release that I should be watching out for?

Answered by DTS Engineer in 890242022
Apple developer forums won't let me share a link to this page

It will, but you have to do it in the clear. See tip 14 in Quinn’s Top Ten DevForums Tips.

Is the planned support for Xcode/libc++ published anywhere?

Apple generally don’t discuss its future plans [1], and AFAIK we haven’t said anything about this. My advice is to check with what’s released at WWDC on Monday [2]. And if things haven’t changed, you should file an enhancement request for the features you’re looking for.

If you do file an ER, please post the bug number, just for the record.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

[1] See tip 3 in Quinn’s Top Ten DevForums Tips (-:

[2] I’m not making any promises here. I genuinely have no idea whether this issue will be addressed there.

Accepted Answer
Apple developer forums won't let me share a link to this page

It will, but you have to do it in the clear. See tip 14 in Quinn’s Top Ten DevForums Tips.

Is the planned support for Xcode/libc++ published anywhere?

Apple generally don’t discuss its future plans [1], and AFAIK we haven’t said anything about this. My advice is to check with what’s released at WWDC on Monday [2]. And if things haven’t changed, you should file an enhancement request for the features you’re looking for.

If you do file an ER, please post the bug number, just for the record.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

[1] See tip 3 in Quinn’s Top Ten DevForums Tips (-:

[2] I’m not making any promises here. I genuinely have no idea whether this issue will be addressed there.

Thanks Eskimo,

I filed feedback through the Feedback Assistant, the ticket number is FB22953329.

What might be more helpful than posting the link to cppreference's compiler support page, it to post a snapshot of what was on the page at the time of writing this.

That can be found here: https://web.archive.org/web/20260605081835/https://en.cppreference.com/cpp/compiler_support

Thanks for the help,

Sean

`std::move_only_function` & `std::execution` in Apple clang?
 
 
Q