-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Vec.resize()
, Vec.resize_with()
should be marked as panicking if the new capacity exceeds isize::MAX
bytes
#117437
Comments
Vec.resize()
, Vec.resize_with()
, and <Vec<T,A> as Extend<_>>
should all be marked as panicking if the new capacity exceeds isize::MAX
bytesVec.resize()
, Vec.resize_with()
should be marked as panicking if the new capacity exceeds isize::MAX
bytes
As a general principle I discourage such negative reasoning. Because it sets terrible incentives for documentation authors. APIs should generally only be read as guaranteeing the behavior that's explicitly stated. Additional behavior beyond that may be best-effort, required to uphold guarantees specified somewhere else, or an implementation-necessity; but not a contract on which the user should build their software. I'm not opposed to adding the panic note, but I think it would be better to link to the general invariants of allocations in the |
@the8472 I don't think this is a matter of "not every possible panic is documented", as it is an issue of inconsistency among the documentation of As it stands, Thus, since (As for making a general statement instead of putting that statement on every individual method - I have no opinion either way.) |
I don't see "consistency" as a good argument. You should look deeper why you want something. Consistency is a proxy for some poorly understood heuristic.
Sure, informing the user that a method may panic can be useful if they want to write panic-free code. But that is quite different from your originally stated motivation which said that the user can draw the inference that the method can be used to bypass the limitation present in other methods. |
It is not. As a developer, I have to draw inferences all the time about library functions, lest I be forced to dive deep into their code and spend precious time that I could be spending coding. The least of these inferences is that the documentation is consistent - that if the documentation does something in one place, it probably does it everywhere else too. In this case, the consistent thing I noted is that, where a function can increase a Vec's capacity, it usually will say that it will panic if the new capacity exceeds If you wish to call that an issue with understanding API contracts, then go ahead. But I really think you're missing the point here - that consistency across documentation is expected, especially among the core Rust libraries like |
Consistency is not mechanically enforced, so such expectations will frequently run aground. And different people have different assumptions what needs to be spelled out again and again. For example one usually does not document that calling a method can cause panics due to stack overflows. Except someone may have left a note on a method that is especially prone to doing so due to a recursive implementation or large stack allocations. The absence of such a note in other places doesn't mean those places don't imply they don't take up stack space. |
Oh my god... I just wanted to open an issue to ensure the documentation stayed consistent within itself, not discuss the overarching implications of memory allocations as a whole. All I'm asking for is a few additional doc-comments saying that it could crash under those circumstances, so it's consistent with the rest of But if being consistent is a problem, I really don't know what to tell you. I'm not you, I guess? |
I apologize for my outburst above. That said, I do just want the documentation to be consistent. Where many pieces of There isn't anything else to it. It's not "a proxy for a poorly understood heuristic." It's simply that I want the documentation to stay consistent - to apply things such as this panic note uniformly, rather than only applying it part of the time. |
@the8472 Not a single function in the standard library is documented as "Does Not Panic". The standard library generally tries to be as exhaustive as possible at documenting which functions can panic. This is undeniably an oversight. |
Location
In the documentation for the following functions:
alloc::vec::Vec.resize()
alloc::vec::Vec.resize_with()
I noted some trait impls where they might want to be added (such as the
Extend
trait impls onVec
), but I'm unsure if it makes sense for the "Panics" notes to be added to them.Summary
These should be marked with the following:
as they all, in one way or another, call
Vec.reserve()
, which itself will panic if the new capacity exceedsisize::MAX
bytes.Because other functions that call
Vec.reserve()
(such asVec.push()
orVec::with_capacity()
) are marked with this "Panics" note, not marking these could result in confusion - namely, the user might think that these functions somehow allow bypassing theisize::MAX
byte limit.The text was updated successfully, but these errors were encountered: