Currently `fn parse_maths_vector` is taking each `&str` in the vector and creating a `MathsArg` out of it. Should be able to use `MathsArg::from(my_str)` to reduce code and make it more readable.
Currently
fn parse_maths_vectoris taking each&strin the vector and creating aMathsArgout of it.Should be able to use
MathsArg::from(my_str)to reduce code and make it more readable.