The multiple-variable-return tag has no wiki summary.
0
votes
1answer
65 views
multiple return values in ANTLR
I use ANTLR4 with Java and I would like to store the values that a rule returns while parses the input. I use a grammar like this:
db : 'DB' '(' 'ID' '=' ID ',' query* ')'
{
...
1
vote
2answers
73 views
how to get multiple returns from one variable?
Hi to all the community.
I search in the forum, but unsuccessfully for this "easy" question.
May be there is already a similar question?
I have the following dataframe:
ID<-c(rep(seq(1:5),4))
...
3
votes
2answers
94 views
nargout in Python
Does Python have any equivalent of nargout in MATLAB? I find nargout a very neat approach if we want to keep the number of return parameters flexible. Is there a way I can find out how many output ...
1
vote
5answers
2k views
Variable Return Type of a Method in C#
I want to give a parameter to a method and i want my method to return data by looking the parameter. Data can be in type of boolean, string, int or etc. How can i return a variable type from a method? ...
14
votes
3answers
9k views
Linux bash: Multiple variable assignment
Does exist in linux bash something similar to the following code in PHP:
list($var1, $var2, $var3) = function_that_returns_a_three_element_array() ;
i.e. you assign in one sentence a corresponding ...
15
votes
3answers
23k views
return more than one value from a function in Python
How to return more than one variable from a function in Python???