summaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'core/src')
-rw-r--r--core/src/widget/text_input.rs11
1 files changed, 3 insertions, 8 deletions
diff --git a/core/src/widget/text_input.rs b/core/src/widget/text_input.rs
index e5d6b70d..9c7f4bc8 100644
--- a/core/src/widget/text_input.rs
+++ b/core/src/widget/text_input.rs
@@ -125,17 +125,12 @@ impl Value {
}
pub fn until(&self, index: usize) -> Self {
- Self(self.0[..index.min(self.len())].iter().cloned().collect())
+ Self(self.0[..index.min(self.len())].to_vec())
}
pub fn to_string(&self) -> String {
- let mut string = String::new();
-
- for c in self.0.iter() {
- string.push(*c);
- }
-
- string
+ use std::iter::FromIterator;
+ String::from_iter(self.0.iter())
}
pub fn insert(&mut self, index: usize, c: char) {