Description
Proposal
Problem statement
For a type that's copy, [x; N]
works great for getting an array.
For a constructor that's const, [const { Foo::new() }; N]
works great (or hopefully will soon) for getting an array.
However, if you have a general String
value that you want to repeat, there's no great way right now.
We should add one.
Motivating examples or use cases
Like how vec![x; N]
supports non-Copy
values, we should have a way to do that for normal arrays too.
See zulip thread https://rust-lang.zulipchat.com/#narrow/stream/122651-general/topic/syntactical.20parallelism.20for.20multiple.20clones/near/403589163
As an interesting bonus, this would also let array::repeat(x)
work inferring the length in many cases, which could actually be a nice thing to use even with Copy
types, until [x; _]
(or however we spell that) ends up happening.
Solution sketch
This is trivial to implement in core
with the existing internal methods:
// in core::array
pub fn repeat<T: Clone, const N: usize>(x: T) -> [T; N] {
from_trusted_iterator(iter::repeat_n(x, N))
}
Alternatives
The simplest option is array::from_fn(|_| x.clone())
, but that's sub-optimal in that it never re-uses the original value, likely losing capacity -- since the whole reason to not be using [x; N]
in the first place is that the type isn't Copy
, and thus plausibly has a non-trivial Drop
.
Fixing that takes something like this (from Kevin Reid):
fn dup<T: Clone, const N: usize>(v: T) -> [T; N] {
let mut buf = Some(v);
core::array::from_fn(|i| if i == N - 1 { buf.take() } else { buf.clone() }.unwrap())
}
But that's far more complicated, and doesn't necessarily optimize well either. It could be done with unsafe
, but once that's happening it's probably good to have it in core
again to encapsulate the unsafe in a known-safe interface.
What happens now?
This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.
Possible responses
The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):
- We think this problem seems worth solving, and the standard library might be the right place to solve it.
- We think that this probably doesn't belong in the standard library.
Second, if there's a concrete solution:
- We think this specific solution looks roughly right, approved, you or someone else should implement this. (Further review will still happen on the subsequent implementation PR.)
- We're not sure this is the right solution, and the alternatives or other materials don't give us enough information to be sure about that. Here are some questions we have that aren't answered, or rough ideas about alternatives we'd want to see discussed.