Files
rust/library/alloc/src
Jubilee e5a6e5c90d Rollup merge of #95965 - CAD97:const-weak-new, r=workingjubilee
Stabilize const-weak-new

This is a fairly uncontroversial library stabilization, so I'm going ahead and proposing it to ride the trains to stable.

This stabilizes the following APIs, which are defined to be non-allocating constructors.

```rust
// alloc::rc
impl<T> Weak<T> {
    pub const fn new() -> Weak<T>;
}

// alloc::sync
impl<T> Weak<T> {
    pub const fn new() -> Weak<T>;
}
```

Closes #95091

``@rustbot`` modify labels: +needs-fcp
2023-07-30 17:50:46 -07:00
..
2023-04-21 16:29:27 -07:00
2023-06-19 12:24:06 -07:00
2023-05-07 00:12:29 +03:00
2023-05-07 00:12:29 +03:00
2023-04-26 02:10:22 -04:00
2023-03-03 17:47:48 +00:00