You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The is_success and is_failure functions/methods in core::result should be called is_ok and is_err instead, so that they correlate with the enum's tag names. These functions were originally called success / failure presumably to avoid clashing with the enum's tags (i.e. the functions could not be called ok / err), but now that they are prefixed with is_ then these additional names are not required.
An independent issue is that the documentation for is_failure (perhaps becoming is_err) should say "Returns true if the result is err" rather than "Returns true if the result is error" - because the enum tag is called err not error.
The text was updated successfully, but these errors were encountered:
Format tests and benches with rustfmt (1-50 of 300)
Extracted from rust-lang#2097.
I filtered this PR to contain exclusively "easy" cases to start off with, i.e. where there is no compiletest_rs (or other) comment in the vicinity that might need to get manually repositioned.
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Sep 22, 2022
Format tests with rustfmt (51-100 of 300)
Extracted from rust-lang#2097.
Like rust-lang#2244, this is intended to be "easy" cases which don't involve comments in the vicinity.
BoxyUwU
pushed a commit
to BoxyUwU/rust
that referenced
this issue
Feb 11, 2025
The
is_success
andis_failure
functions/methods in core::result should be calledis_ok
andis_err
instead, so that they correlate with the enum's tag names. These functions were originally calledsuccess
/failure
presumably to avoid clashing with the enum's tags (i.e. the functions could not be calledok
/err
), but now that they are prefixed withis_
then these additional names are not required.An independent issue is that the documentation for
is_failure
(perhaps becomingis_err
) should say "Returns true if the result iserr
" rather than "Returns true if the result iserror
" - because the enum tag is callederr
noterror
.The text was updated successfully, but these errors were encountered: