Skip to content
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

Tracking issue for const Option functions #67441

Open
9999years opened this issue Dec 20, 2019 · 17 comments
Open

Tracking issue for const Option functions #67441

9999years opened this issue Dec 20, 2019 · 17 comments
Labels
A-const-eval Area: constant evaluation (mir interpretation) A-const-fn Area: const fn foo(..) {..}. Pure functions which can be applied at compile time. C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. Libs-Tracked Libs issues that are tracked on the team's project board. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.

Comments

@9999years
Copy link
Contributor

9999years commented Dec 20, 2019

Current candidates with feature = const_option include

See also the meta-tracking issue for const fns, #57563.
Working on this in PR #66884.

Blocked on #73255.

@JohnTitor JohnTitor added the C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. label Dec 20, 2019
@Centril Centril added A-const-eval Area: constant evaluation (mir interpretation) A-const-fn Area: const fn foo(..) {..}. Pure functions which can be applied at compile time. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. labels Dec 20, 2019
Manishearth added a commit to Manishearth/rust that referenced this issue Jul 17, 2020
Make some Option methods const

Tracking issue: rust-lang#67441

Constantify the following methods of `Option`:
- `as_ref`
- `is_some`
- `is_none`
- `iter` (not sure about this one, but it is possible, and will be useful when const traits are a thing)

cc @rust-lang/wg-const-eval @rust-lang/libs
Manishearth added a commit to Manishearth/rust that referenced this issue Jul 17, 2020
Make some Option methods const

Tracking issue: rust-lang#67441

Constantify the following methods of `Option`:
- `as_ref`
- `is_some`
- `is_none`
- `iter` (not sure about this one, but it is possible, and will be useful when const traits are a thing)

cc @rust-lang/wg-const-eval @rust-lang/libs
@KodrAus KodrAus added the Libs-Tracked Libs issues that are tracked on the team's project board. label Jul 30, 2020
bors added a commit to rust-lang-ci/rust that referenced this issue Jul 31, 2020
…=oli-obk

Make `Option::unwrap` unstably const

This is lumped into the `const_option` feature gate (rust-lang#67441), which enables a potpourri of `Option` methods.

cc @rust-lang/wg-const-eval

r? @oli-obk
RalfJung added a commit to RalfJung/rust that referenced this issue Sep 19, 2020
Stabilize some Option methods as const

Stabilize the following methods of `Option` as const:
 - `is_some`
 - `is_none`
 - `as_ref`

These methods are currently const under the unstable feature `const_option` (tracking issue: rust-lang#67441).
I believe these methods to be eligible for stabilization because of the stabilization of rust-lang#49146 (Allow if and match in constants) and the trivial implementations, see also:  [PR#75463](rust-lang#75463).

Related: rust-lang#76225
RalfJung added a commit to RalfJung/rust that referenced this issue Sep 21, 2020
Stabilize some Option methods as const

Stabilize the following methods of `Option` as const:
 - `is_some`
 - `is_none`
 - `as_ref`

These methods are currently const under the unstable feature `const_option` (tracking issue: rust-lang#67441).
I believe these methods to be eligible for stabilization because of the stabilization of rust-lang#49146 (Allow if and match in constants) and the trivial implementations, see also:  [PR#75463](rust-lang#75463).

Related: rust-lang#76225
@peter-kehl
Copy link
Contributor

Yes for constantifying Option.expect.

However, as per https://doc.rust-lang.org/nightly/src/core/option.rs.html, Option.expect(self, msg: &str) calls (private) fn expect_failed(msg: &str), which uses panic!("{}", msg). Using panic! with more than one argument is not const-friendly:

    --> library/core/src/macros/mod.rs:18:38
     |
7    | / macro_rules! panic {
8    | |     () => (
9    | |         $crate::panic!("explicit panic")
10   | |     );
...    |
18   | |         $crate::panicking::panic_fmt($crate::format_args!($fmt, $($arg)+))
     | |                                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ in this macro invocation (#2)
19   | |     );
20   | | }
     | |_- in this expansion of `panic!` (#1)
...
761  | /     macro_rules! format_args {
762  | |         ($fmt:expr) => {{ /* compiler built-in */ }};
763  | |         ($fmt:expr, $($args:tt)*) => {{ /* compiler built-in */ }};
764  | |     }
     | |_____- in this expansion of `$crate::format_args!` (#2)
     | 
    ::: library/core/src/option.rs:1294:5
     |
1294 |       panic!("{}", msg)
     |       ----------------- in this macro invocation (#1)

Since that is not specific to Option, is there any discussion/plan/tracking issue on making panic const-friendly? Isn't it reasonable to assume that any panic is a panic? Or, can panic fail (for example, if formatting fails) and not panic?

@memoryruins
Copy link
Contributor

@peter-kehl the tracking issue for panicking in constants is #51999

@davidhewitt
Copy link
Contributor

FYI anyone looking at .unwrap_or - I just naively tried to add this, but given that T may impl Drop, this is currently unsupported.

I wonder if it would be feasible for the compiler to allow use of .unwrap_or for types that do impl drop - e.g. only fail when trying to const-evaluate .unwrap_or for T: impl Drop.

@jhpratt
Copy link
Member

jhpratt commented Mar 13, 2021

@davidhewitt Given that neither const trait impls nor const trait bounds are usable on stable, it would be quite unintuitive if this were. Even on nightly, const traits have yet to be RFC accepted.

@davidhewitt
Copy link
Contributor

Sorry, I typo'd above - I meant to say only allow types which don't impl Drop.

We probably wouldn't want this in the function signature (should just be const fn unwrap_or(default: T)). The compiler could be aware that in some paths inside the function default is disposed of, and so reject substitutions during const evaluation for T which impl Drop.

TBH it sounds messy and slightly leaks information about the function implementation, so I'm unconvinced it's worth the effort. Just musing of a way to allow some forms of const unwrap_or before const impl Trait / const Drop is ready.

@jhpratt
Copy link
Member

jhpratt commented Mar 13, 2021

Yeah, I figured it was a typo and responded accordingly.

I still think it would be awkward to have this magically work for some types but not others, especially if this isn't in the function signature. I'd much rather wait for const trait impls to be RFC approved and land on stable, as that would allow way more than just this. Just look at the blockers on #82814 and realize that having const trait impls would allow ~80% of them (just guessing, I haven't bothered to actually calculate a percentage).

@jhpratt
Copy link
Member

jhpratt commented Apr 13, 2021

If/when #51999 is stabilized, Option::expect and Option::unwrap should be unblocked (I haven't checked this, it's just from reading source code).

@CodesInChaos
Copy link

@jhpratt Option::expect passes more than one argument to panic! (and the second argument isn't const), so it'll need more work than the minimal version of const panics considered for stabilization at the moment.

@mbartlett21
Copy link
Contributor

replace, take, and copied would also be some more that can be done.

Can @9999years add these to the list at the top?

Manishearth added a commit to Manishearth/rust that referenced this issue Oct 4, 2021
…-replace, r=joshtriplett

const fn for option copied, take & replace

Tracking issue: [rust-lang#67441](rust-lang#67441)

Adding const fn for the copied, take and replace method of Option. Also adding necessary unit test.

It's my first contribution so I am pretty sure I don't know what I'm doing but there's a first for everything!
Manishearth added a commit to Manishearth/rust that referenced this issue Oct 4, 2021
…-replace, r=joshtriplett

const fn for option copied, take & replace

Tracking issue: [rust-lang#67441](rust-lang#67441)

Adding const fn for the copied, take and replace method of Option. Also adding necessary unit test.

It's my first contribution so I am pretty sure I don't know what I'm doing but there's a first for everything!
GuillaumeGomez added a commit to GuillaumeGomez/rust that referenced this issue Oct 16, 2021
Make Option::as_mut const

Adding `const` for `Option::as_mut`.

Tracking issue: rust-lang#67441
JohnTitor added a commit to JohnTitor/rust that referenced this issue Oct 16, 2021
Make Option::as_mut const

Adding `const` for `Option::as_mut`.

Tracking issue: rust-lang#67441
@lilasta
Copy link
Contributor

lilasta commented Oct 17, 2021

Option::as_mut has been constified: #89953

@CodesInChaos
Copy link

Since the panic now seems to support non-const strings as second argument, Option::expect can now be stabilized, right?

@jhpratt
Copy link
Member

jhpratt commented Oct 17, 2021

@CodesInChaos I believe it's blocked on const_precise_live_drops, along with a number of other methods.

matthiaskrgr added a commit to matthiaskrgr/rust that referenced this issue Dec 3, 2021
Make `Option::expect` unstably const

Tracking issue: rust-lang#67441
matthiaskrgr added a commit to matthiaskrgr/rust that referenced this issue Dec 3, 2021
Make `Option::expect` unstably const

Tracking issue: rust-lang#67441
@lilasta
Copy link
Contributor

lilasta commented Dec 3, 2021

Option::expect has been constified: #90269

@jhpratt
Copy link
Member

jhpratt commented Dec 3, 2021

unstably for those not looking in further detail ^^

@clarfonthey
Copy link
Contributor

Was there any actual blocker to stabilising Option::unwrap and Option::expect? It's been over a year and I could have sworn they were already stabilised, but I guess not.

@jhpratt
Copy link
Member

jhpratt commented Jan 4, 2023

Precise live drops (or whatever it's called) is the sole blocker to my knowledge.

@c410-f3r
Copy link
Contributor

c410-f3r commented Jan 4, 2023

AFAICT, little progress were made since #73255 (comment) so I guess stabilization is likely going to take some time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-const-eval Area: constant evaluation (mir interpretation) A-const-fn Area: const fn foo(..) {..}. Pure functions which can be applied at compile time. C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. Libs-Tracked Libs issues that are tracked on the team's project board. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests