-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Casey's feedback round 2 #31
Comments
I'm reasonably certain there is no way to implement these operations under these constraints - you'll need to add requirements on
Probably because |
About: " I've mentioned that very large
done.
So I've removed the implicitly generated bits. The only requirement is that the destructor must be trivial if |
|
@CaseyCarter my time is extremely limited to work on this (I don't know how you manage). I have tried to improve it a bit, but maybe you could suggest what to prioritize. If you would only have time to fix one thing, what would that be? The deadline for the next maling is 2018-02-12 14:00 UTC and I'd like to submit the revised paper one week before so that I don't miss the deadline again (is this enough? or should I do that sooner?). |
Since the paper is going to LEWG and LWG likely won't see it in JAX, focus less on nitpicky specification details and more on design surface.
I've never had a problem submitting the Friday before the mailing deadline. (FYI Herb mentioned to me yesterday that there is a self-serve automated paper submission and P-number assignment system in the works which will make this process 100x better.) |
I've opened a new issue to track updating parts of container requirements where array is mentioned: #38 |
@CaseyCarter I fixed most of the issues you mentioned in the last commit but these ones remain open:
constexpr
has a run-time cost value initialization up tocapacity()
for trivial types.array
is mentioned as an exception, and consider adding "andfixed_capacity_vector
".constexpr
for trivialT
s and only requiresEmplaceConstructible
(the prototype value initializes all elements and then assigns to the from the range)is_trivial
the right trigger to select live object implementation? (the first version of the proposal usedis_literal_t
but I cannot recall why I changed it)I don't know how to fix them yet, but will try to do so before the next deadline.
The text was updated successfully, but these errors were encountered: