Returns the function's return (type, value) tuples.
Example
from glider import*defquery():# Fetch a list of functions functions =Functions().exec(1)# Retrieve the return instructions of the first function tuple_list = functions[0].return_tuple()for tup in tuple_list:for var in tup:print(var.name)return functions