<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><br class=""><div><br class=""><blockquote type="cite" class=""><div class="">On May 17, 2019, at 13:16, Marshall Clow <<a href="mailto:mclow.lists@gmail.com" class="">mclow.lists@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div dir="ltr" class="">On Thu, May 16, 2019 at 11:18 PM Eric Fiselier <<a href="mailto:eric@efcs.ca" class="">eric@efcs.ca</a>> wrote:<br class=""></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr" class="">I'm coming into this conversation late, so let me pontificate for a moment:</div></blockquote><div class="">[snip] </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr" class=""><div class=""><br class=""></div><div class="">With that in mind, here are my thoughts on the proposal:</div><div class=""><br class=""></div><div class="">* `std::experimental::foo` and `std::foo` are different things. It's important for users to understand that</div><div class="">  `std::experimental::foo` provides none of  the same API/ABI stability guarantees `std::foo` does.</div></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/libcxx-dev" rel="noreferrer" target="_blank" class=""></a></blockquote></div></blockquote><div class=""><br class=""></div><div class="">Not only that, but there is no guarantee that  `std::experimental::foo` and `std::foo` behave the same.</div><div class="">(Similar, almost certainly yes - but in detail, probably not)</div><div class="">Optional is the poster child here.</div><div class=""><br class=""></div><div class="">If people want stability, guarantees against breaking changes, etc. - then they should not use stuff in std::experimental. </div><div class="">Period. Full stop.</div><div class="">Wait for it to appear in a standard.</div></div></div></div></blockquote><br class=""></div><div><div>Okay, so I had a discussion with Marshall last Friday, and I'd like to summarize the current situation and where we disagree. Marshall, please feel free to amend anything I say below.</div><div><br class=""></div><div>My main gripe is that the user experience for experimental features is currently not excellent. In particular, users are making assumptions they shouldn't make about experimental features, and they end up using those features in places where an experimental feature wouldn't belong (e.g. an API boundary of a stable library, or somewhere that requires ABI stability). This ends up biting them (and hence us too) when we break those assumptions. Note that I fully understand this is a "users are misbehaving" kind of problem. However, I think it is unrealistic to expect users to know about TSes, Standard release cycles, and even important things like ABI stability. I think we must put mechanisms in place to force them to behave correctly.</div><div><br class=""></div><div>More specifically, I'm trying to address the problem on three main fronts:</div><div>1. I want users to opt-in explicitly and at the compiler flag level to get experimental features. Otherwise, the declarations are not present in the headers. This way, by default, they don't have access to experimental features. If they want them, they must enable the flag in their project (and all dependent projects in case of a library), which I claim is going to make them understand the experimental nature of those features.</div><div>2. I want to have a user-friendly way of using non header-only experimental features. This is a nice-to-have.</div><div>3. I want to have a user-visible way of warning users that an experimental feature is going to be removed in a few LLVM releases. People don't read the documentation and they don't follow exactly when we implement the non experimental version of a feature.</div><div><br class=""></div><div>Marshall's opinion is that adding barriers to use experimental features is just going to be frustrating and will not change the fact that users make incorrect assumptions about experimental features. We already put those features in a `experimental` namespace, and users are just going to add the compiler flag without really considering the implications.</div><div><br class=""></div><div>So we disagree on (1), specifically the part where -fexperimental would control whether we provide the declarations of experimental features in libc++. However, we both agree on (2) and (3), although we don't agree on how to solve (3) exactly -- but I don't think that's the main point of contention. I see a couple of paths we can take going forward:</div><div><br class=""></div><div>1. Status quo, which leads to embarrassing situations where we break users and tell them "it's your problem, the feature was experimental".</div><div>2. We adopt my proposal as-is.</div><div>3. We adopt my proposal but we don't add -fexperimental (or we add it but it only controls whether -lc++experimental is linked). It is an improvement over the status quo because we still agree to add deprecation warnings when we ship the non-experimental version of a feature.</div><div><br class=""></div><div>Any thoughts?</div><div>Louis</div><div class=""><br class=""></div></div></body></html>