mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 23:03:06 +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