Remove useless function
authorGreg Burri <greg.burri@gmail.com>
Mon, 5 Dec 2022 11:09:28 +0000 (12:09 +0100)
committerGreg Burri <greg.burri@gmail.com>
Mon, 5 Dec 2022 11:09:28 +0000 (12:09 +0100)
src/common.rs

index aa8372d..e69de29 100644 (file)
@@ -1,10 +0,0 @@
-use std::{fs, path::Path, str::FromStr};
-
-pub fn read_list_of_numbers<P, T>(file: P, sep: &str) -> Vec<T>
-where
-    P: AsRef<Path>,
-    T: FromStr,
-    T::Err: std::fmt::Debug
-{
-    fs::read_to_string(file).unwrap().split(sep).map(|line| line.trim().parse::<T>().unwrap()).collect()
-}
\ No newline at end of file