mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 01:05:39 +03:00
0bcfd2d96e
Stabilize const slice::split_at
This stabilizes the use of the following method in const context:
```rust
impl<T> [T] {
pub const fn split_at(&self, mid: usize) -> (&[T], &[T]);
}
```
cc tracking issue #101158