Avoid collect() by accepting iterators into Transaction::change.
This commit is contained in:
parent
2027f69eae
commit
0427acd18c
2 changed files with 6 additions and 4 deletions
|
@ -155,7 +155,7 @@ pub fn open_below(state: &mut State, _count: usize) {
|
|||
0,
|
||||
);
|
||||
|
||||
let transaction = Transaction::change(state, changes.collect()).with_selection(selection);
|
||||
let transaction = Transaction::change(state, changes).with_selection(selection);
|
||||
|
||||
transaction.apply(state);
|
||||
// TODO: need to store into history if successful
|
||||
|
|
|
@ -353,8 +353,10 @@ impl Transaction {
|
|||
}
|
||||
|
||||
/// Generate a transaction from a set of changes.
|
||||
// TODO: take an owned iter instead of Vec
|
||||
pub fn change(state: &State, changes: Vec<Change>) -> Self {
|
||||
pub fn change<I>(state: &State, changes: I) -> Self
|
||||
where
|
||||
I: IntoIterator<Item = Change> + ExactSizeIterator,
|
||||
{
|
||||
let len = state.doc.len_chars();
|
||||
let mut acc = Vec::with_capacity(2 * changes.len() + 1);
|
||||
|
||||
|
@ -381,7 +383,7 @@ impl Transaction {
|
|||
where
|
||||
F: Fn(&SelectionRange) -> Change,
|
||||
{
|
||||
Self::change(state, state.selection.ranges.iter().map(f).collect())
|
||||
Self::change(state, state.selection.ranges.iter().map(f))
|
||||
}
|
||||
|
||||
/// Insert text at each selection head.
|
||||
|
|
Loading…
Add table
Reference in a new issue