pub fn unwrap_vec<T>(value: Vec<T>) -> Result<Vec<T>>where T: FromStr, T::Err: StdError + Send + Sync + 'static,
Reads stdin into a String and parses it as Vec<T> using whitespaces as delimiters if the given Vec<T> is empty.
Vec<T>