pub fn get_function_result(
function_name: String,
parameter_and_value: &mut Vec<BaseTypes>,
dot_notation: String,
array: Option<Array>,
dictionary: Option<Dictionary>,
_variable: Option<Variable>,
) -> Result<BaseTypes, Box<dyn Error>>
Expand description
Get the function result
params: function_name: String -> The name of the function
params: parameter_and_value: &mut Vec
Returns: Result<BaseTypes, Box