Skip to content

Issues: rust-lang/rust

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

Author
Filter by author
Loading
Label
Filter by label
Loading
Use alt + click/return to exclude labels
or + click/return for logical OR
Projects
Filter by project
Loading
Milestones
Filter by milestone
Loading
Assignee
Filter by who’s assigned
Sort

Issues list

Tracking issue for release notes of #67456: Tracking issue for const slice::from_raw_parts_mut (const_slice_from_raw_parts_mut) A-const-eval Area: Constant evaluation (MIR interpretation) A-const-fn Area: const fn foo(..) {..}. Pure functions which can be applied at compile time. A-raw-pointers Area: raw pointers, MaybeUninit, NonNull A-slice Area: `[T]` relnotes Marks issues that should be documented in the release notes of the next release. relnotes-tracking-issue Marks issues tracking what text to put in release notes. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#131262 opened Oct 4, 2024 by rustbot
3 tasks
RawVec sets capacity incorrectly, causing potentially many bugs A-allocators Area: Custom and system allocators A-collections Area: `std::collection` A-slice Area: `[T]` T-libs Relevant to the library team, which will review and decide on the PR/issue.
#116580 opened Oct 9, 2023 by jmaargh
request: lint when raw pointer slicing implicitly creates a temporary reference A-lint Area: Lints (warnings about flaws in source code) such as unused_mut. A-raw-pointers Area: raw pointers, MaybeUninit, NonNull A-slice Area: `[T]` C-enhancement Category: An issue proposing an enhancement or a PR with one. T-opsem Relevant to the opsem team
#99437 opened Jul 18, 2022 by RalfJung
Vec::extend_from_slice’s documentation forgot about the difference of T: Clone vs. T: Copy bounds. A-docs Area: documentation for any part of the project, including the compiler, standard library, and tools A-slice Area: `[T]` T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#97119 opened May 17, 2022 by steffahn
Tracking Issue for *mut [T]::split_at_mut A-raw-pointers Area: raw pointers, MaybeUninit, NonNull A-slice Area: `[T]` C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#95595 opened Apr 2, 2022 by the8472
1 of 3 tasks
The assembly code generated by calling <[T]>::sort_unstable_by contains bounds checking code A-codegen Area: Code generation A-slice Area: `[T]` E-hard Call for participation: Hard difficulty. Experience needed to fix: A lot. E-help-wanted Call for participation: Help is requested to fix this issue. I-slow Issue: Problems and improvements with respect to performance of generated code. T-libs Relevant to the library team, which will review and decide on the PR/issue.
#92958 opened Jan 16, 2022 by EFanZh
MaybeUninit::fill_slice A-raw-pointers Area: raw pointers, MaybeUninit, NonNull A-slice Area: `[T]` C-feature-request Category: A feature request, i.e: not implemented / a PR. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#91053 opened Nov 19, 2021 by stepancheg
slice docs could use example functions, clear header A-docs Area: documentation for any part of the project, including the compiler, standard library, and tools A-slice Area: `[T]` C-enhancement Category: An issue proposing an enhancement or a PR with one. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#85950 opened Jun 3, 2021 by workingjubilee
Use sort_unstable to sort primitive types A-slice Area: `[T]` I-slow Issue: Problems and improvements with respect to performance of generated code. T-libs Relevant to the library team, which will review and decide on the PR/issue.
#80483 opened Dec 29, 2020 by ChrisJefferson
MaybeUninit::write_slice_cloned() makes it very easy to accidentally leak A-raw-pointers Area: raw pointers, MaybeUninit, NonNull A-slice Area: `[T]`
#80376 opened Dec 26, 2020 by mgeier
Inconsistent failure in byte slice &[u8] comparison caused by unrelated code A-inference Area: Type inference A-slice Area: `[T]` A-typesystem Area: The type system C-bug Category: This is a bug. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#77314 opened Sep 28, 2020 by aidanhs
Tracking Issue for slice_range A-slice Area: `[T]` 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.
#76393 opened Sep 5, 2020 by dylni
2 of 4 tasks
slice::iter() does not preserve number of iterations information for optimizer causing unneeded bounds checks A-iterators Area: Iterators A-slice Area: `[T]` I-slow Issue: Problems and improvements with respect to performance of generated code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#75935 opened Aug 26, 2020 by sdroege
Tracking Issue for slice::array_windows A-array Area: `[T; N]` A-const-generics Area: const generics (parameters and arguments) A-slice Area: `[T]` C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. F-generic_const_exprs `#![feature(generic_const_exprs)]` 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.
#75027 opened Aug 1, 2020 by lcnr
3 tasks
Tracking Issue for slice::array_chunks A-array Area: `[T; N]` A-const-generics Area: const generics (parameters and arguments) A-slice Area: `[T]` C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. F-generic_const_exprs `#![feature(generic_const_exprs)]` 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.
#74985 opened Jul 31, 2020 by lcnr
5 tasks
Tracking Issue for raw slice getters (slice_ptr_get) A-raw-pointers Area: raw pointers, MaybeUninit, NonNull A-slice Area: `[T]` B-unstable Blocker: Implemented in the nightly compiler and unstable. C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. Libs-Small Libs issues that are considered "small" or self-contained 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.
#74265 opened Jul 12, 2020 by RalfJung
2 of 4 tasks
Tracking Issue for Box::into_boxed_slice A-slice Area: `[T]` B-unstable Blocker: Implemented in the nightly compiler and unstable. C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. Libs-Small Libs issues that are considered "small" or self-contained 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.
#71582 opened Apr 26, 2020 by elichai
1 of 3 tasks
Tracking issue for #![feature(maybe_uninit_slice)] A-raw-pointers Area: raw pointers, MaybeUninit, NonNull A-slice Area: `[T]` B-unstable Blocker: Implemented in the nightly compiler and unstable. 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. requires-nightly This issue requires a nightly compiler in some way. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#63569 opened Aug 14, 2019 by Centril
Tracking issue for slice_take A-slice Area: `[T]` C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#62280 opened Jul 1, 2019 by cramertj
1 of 6 tasks
Use const generics for array Default impl A-array Area: `[T; N]` A-const-generics Area: const generics (parameters and arguments) A-slice Area: `[T]` Libs-Tracked Libs issues that are tracked on the team's project board. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-lang Relevant to the language team, which will review and decide on the PR/issue. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#61415 opened May 31, 2019 by varkor
1 of 3 tasks
Tracking issue for slice::partition_dedup/by/by_key A-slice Area: `[T]` B-unstable Blocker: Implemented in the nightly compiler and unstable. C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. Libs-Small Libs issues that are considered "small" or self-contained 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.
#54279 opened Sep 16, 2018 by Kerollmops
1 of 5 tasks
ProTip! Add no:assignee to see everything that’s not assigned.